@charset "UTF-8";
* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  line-height: 150%;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
  color: #1a1a1c;
}
body .entry-confirm[hidden] {
  display: none !important;
}
body .entry-confirm {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
body .entry-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body .entry-confirm__dialog {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 720px;
  margin: 40px auto;
  background: #f7f4f8;
  border-radius: 32px;
  padding: 36px 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
body .entry-confirm__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
body .entry-confirm__logo img {
  width: 124px;
  height: auto;
  display: block;
}
body .entry-confirm__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1c;
}
body .entry-confirm__body {
  color: #1a1a1c;
  font-size: 16px;
}
body .entry-confirm__body p {
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
}
body .entry-confirm__actions {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
body .entry-confirm__button {
  width: 100%;
  height: 64px;
  border-radius: 999px;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
body .entry-confirm__button--agree {
  background: linear-gradient(135deg, #ff7300, #fc923c);
  color: #fff;
}
body .entry-confirm__button--decline {
  background: #fff;
  color: #1a1a1c;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  body .entry-confirm__dialog {
    width: calc(100% - 20px);
    margin: 0 20px;
    border-radius: 28px;
    padding: 52px 20px;
  }
  body .entry-confirm__title {
    font-size: 20px;
    margin-bottom: 32x;
  }
  body .entry-confirm__body {
    font-size: 15px;
  }
  body .entry-confirm__button {
    height: 52px;
    font-size: 16px;
  }
}
body {
  /* 一覧ページ お気に入りボタン */
}
body .button.js-list-favorite-button {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 999px;
}
body .button.js-list-favorite-button.is-favorited {
  border-radius: 999px;
}
body .button.js-list-favorite-button.is-favorited .button-icon svg path {
  fill: #D83357;
  stroke-width: 0;
}
body {
  /* 詳細ページ お気に入りボタン */
}
body .button.js-favorite-button {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
body .button.js-favorite-button.is-favorited {
  width: 42px;
  height: 42px;
}
body .button.js-favorite-button.is-favorited .button-label {
  color: #6f007e;
  font-weight: 500;
}
body .button.js-favorite-button.is-favorited .button-icon svg path {
  fill: #D83357;
  stroke-width: 0;
}
body .login-page {
  min-height: 100vh;
  background: #f7f7f7;
  color: #1a1a1c;
}
body .login-page__main {
  display: flex;
  flex-direction: column;
}
body .login-page__container {
  flex: 1;
  padding: 32px 20px;
}
body .login-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
body .login-header__back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #0f2340;
  text-decoration: none;
  font-size: 32px;
}
body .login-header__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #0f2340;
}
body .login-form__group {
  margin-bottom: 32px;
}
body .login-form__label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1c;
  line-height: 1.5;
}
body .login-form__input {
  width: 100%;
  height: 44px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  color: #0f2340;
  outline: none;
}
body .login-form__input::-moz-placeholder {
  color: #b7bdc8;
}
body .login-form__input::placeholder {
  color: #b7bdc8;
}
body .login-form__input:focus {
  border-color: #6f007e;
  box-shadow: 0 0 0 3px rgba(212, 183, 95, 0.12);
}
body .login-form__message {
  margin: 4px 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}
body .login-form__message.is-error {
  background: #fff1f1;
  color: #c63d3d;
  border: 1px solid #f0c7c7;
}
body .login-form__message.is-success {
  background: #eef9f0;
  color: #2d7d46;
  border: 1px solid #c8e3cf;
}
body .login-form__submit {
  margin: 0 auto;
  display: block;
  width: 280px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0px 0px 30px 0px rgba(39, 39, 50, 0.1);
  background: linear-gradient(90deg, #5a0063 0%, #6a0074 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
}
body .login-form__forgot {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: #6f007e;
  font-size: 14px;
  text-decoration: none;
  text-decoration: underline;
}
body .login-register {
  border-top: 1px solid #e5e5e5;
  padding: 32px 20px;
  background: #f7f7f7;
}
body .login-register__lead {
  width: 100%;
  margin: 0 0 16px;
  text-align: center;
  font-size: 12px;
  color: #1a1a1c;
}
body .login-register__button {
  margin: 0 auto;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #dddddd;
}
body .login-form__group {
  margin-bottom: 24px;
}
body .login-form__label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1c;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .login-form__label .login-form__note {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}
body .login-form__input {
  width: 100%;
  height: 44px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  color: #1a1a1c;
  outline: none;
}
body .login-form__input::-moz-placeholder {
  color: #b7bdc8;
  font-size: 14px;
}
body .login-form__input::placeholder {
  color: #b7bdc8;
  font-size: 14px;
}
body .login-form__input:focus {
  border-color: #6f007e;
  box-shadow: 0 0 0 3px rgba(212, 183, 95, 0.12);
}
body .login-form__message {
  margin: 0 0 24px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}
body .login-form__message.is-error {
  background: #fff1f1;
  color: #c63d3d;
  border: 1px solid #f0c7c7;
}
body .login-form__message.is-success {
  background: #eef9f0;
  color: #2d7d46;
  border: 1px solid #c8e3cf;
}
body .login-form__agreement {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.8;
  color: #1a1a1c;
  text-align: center;
}
body .login-form__agreement a {
  color: #6f007e;
  text-decoration: underline;
}
body .login-form__submit {
  margin: 0 auto;
  display: block;
  width: 280px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0px 0px 30px 0px rgba(39, 39, 50, 0.1);
  background: linear-gradient(135deg, #590077, #8b3dca);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
}
body .login-form__forgot {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: #6f007e;
  font-size: 14px;
  text-decoration: none;
  text-decoration: underline;
}
@media (min-width: 768px) {
  body .login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
  }
  body .login-page__main {
    width: 100%;
    max-width: 430px;
    min-height: auto;
    background: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
}
body .mypage-body {
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(137, 53, 255, 0.12), transparent 28%), radial-gradient(circle at top left, rgba(255, 94, 178, 0.12), transparent 22%), linear-gradient(180deg, #fcf8ff 0%, #f7f5fb 52%, #f3f4f8 100%);
  color: #1e1b2e;
}
body .mypage {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
  padding: 24px 0 56px;
}
body .mypage-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(122, 78, 201, 0.12);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(129, 54, 180, 0.92)), #590077;
  box-shadow: 0 24px 60px rgba(68, 24, 110, 0.18);
}
body .mypage-hero::before, body .mypage-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
body .mypage-hero::before {
  top: -40px;
  right: -20px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
}
body .mypage-hero::after {
  bottom: -70px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
}
body .mypage-hero__inner {
  position: relative;
  z-index: 1;
  padding: 34px 26px;
  color: #fff;
}
body .mypage-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  opacity: 0.78;
}
body .mypage-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}
body .mypage-hero__text {
  max-width: 640px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
body .mypage-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
body .mypage-summary__card {
  padding: 12px;
  border: 1px solid rgba(95, 69, 145, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(34, 28, 61, 0.06);
}
body .mypage-summary__label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1c;
}
body .mypage-summary__value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1c;
}
body .mypage-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
body .mypage-menu button {
  padding: 8px 20px;
  border: 1px solid rgba(104, 87, 152, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1a1a1c;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
body .mypage-menu button:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 0, 119, 0.2);
  box-shadow: 0 10px 24px rgba(42, 29, 70, 0.08);
}
body .mypage-menu button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #590077, #8b3dca);
  color: #fff;
}
body .mypage-panel {
  min-height: 360px;
  padding: 18px;
  border: 1px solid rgba(95, 69, 145, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(34, 28, 61, 0.08);
}
body .mypage-content {
  display: grid;
  gap: 14px;
}
body .mypage-card {
  display: block;
  padding: 18px;
  border: 1px solid rgba(115, 94, 165, 0.1);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 26px rgba(34, 28, 61, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body .mypage-card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 0, 119, 0.16);
  box-shadow: 0 16px 34px rgba(34, 28, 61, 0.1);
}
body .mypage-card__actions {
  margin-top: 10px;
}
body .mypage-edit-button {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: #eee;
  font-size: 12px;
  text-decoration: none;
}
body .mypage-edit-button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
body .mypage-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
body .mypage-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: #1a1a1c;
}
body .mypage-card__badge {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(89, 0, 119, 0.08);
  color: #590077;
  font-size: 11px;
  font-weight: 500;
}
body .mypage-card__meta {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #6a637d;
}
body .mypage-card__date {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 400;
  color: #9389ac;
}
body .mypage-empty,
body .mypage-loading {
  padding: 42px 18px;
  border: 1px dashed rgba(109, 89, 159, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #faf9fd 100%);
  text-align: center;
}
body .mypage-empty__title,
body .mypage-loading__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #2a1d46;
}
body .mypage-empty__text,
body .mypage-loading__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #7a738f;
}
body .mypage-account {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
body .mypage-account__button {
  min-width: 200px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c243e, #4d3d68);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(27, 22, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
body .mypage-account__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(27, 22, 42, 0.22);
}
body .mypage-account__button:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  body .mypage {
    width: 100%;
    padding: 20px 20px;
  }
  body .mypage-hero__inner {
    padding: 20px;
  }
  body .mypage-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  body .mypage-menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    /* スクロールバー隠す（任意） */
    scrollbar-width: none;
  }
  body .mypage-menu::-webkit-scrollbar {
    display: none;
  }
  body .mypage-menu button {
    flex: 0 0 auto;
  }
  body .mypage-panel {
    padding: 14px;
    border-radius: 4px;
  }
  body .mypage-card {
    padding: 16px;
  }
  body .mypage-card__head {
    flex-direction: column;
    gap: 10px;
  }
  body .mypage-card__badge {
    align-self: flex-start;
  }
  body .mypage-account__button {
    width: 100%;
  }
}
body .policy-page {
  margin: 0;
  background: #000;
  color: #333;
}
body .policy-hero {
  background: linear-gradient(180deg, #5a0063 0%, #340057 100%);
  padding: 48px 20px 46px;
}
body .policy-hero__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
body .policy-hero__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
body .policy-hero__subtitle {
  margin: 4px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
body .policy-content {
  background: #F9F9F9;
  padding: 32px 0 56px;
}
body .policy-content__inner {
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  padding: 30px 18px 34px;
  box-sizing: border-box;
}
body .policy-section + .policy-section {
  margin-top: 36px;
}
body .policy-section__title {
  position: relative;
  margin: 0 0 16px;
  padding-left: 16px;
  color: #1a1a1c;
  font-size: 18px;
  font-weight: 700;
}
body .policy-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: calc(100% - 6px);
  background: #6f007e;
  border-radius: 0;
}
body .policy-section__body p {
  margin: 0 0 12px;
  color: #1a1a1c;
  font-size: 16px;
}
body .policy-section__body p:last-child {
  margin-bottom: 0;
}
body .policy-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
body .policy-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1c;
  font-size: 16px;
}
body .policy-list li + li {
  margin-top: 12px;
}
body .policy-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #444;
}
body .policy-updated {
  margin: 32px 0 0;
  color: #1a1a1c;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 480px) {
  body .policy-hero {
    padding: 46px 20px 44px;
  }
  body .policy-hero__title {
    font-size: 18px;
  }
  body .policy-hero__subtitle {
    font-size: 12px;
  }
  body .policy-content {
    padding: 32px 0 32px;
  }
  body .policy-content__inner {
    width: 100%;
    padding: 32px 20px;
  }
  body .policy-section + .policy-section {
    margin-top: 32px;
  }
  body .policy-section__title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  body .policy-section__body p,
  body .policy-list li,
  body .policy-updated {
    font-size: 14px;
  }
  body .policy-section__body p a,
  body .policy-list li a,
  body .policy-updated a {
    color: #6f007e;
    font-weight: 500;
  }
  body .policy-section__body ol {
    font-size: 14px;
    padding-left: 20px;
  }
  body .policy-section__body ol li {
    margin-top: 12px;
  }
}
body .skeleton {
  position: relative;
  overflow: hidden;
  background: #ececf1;
  border-radius: 4px;
}
body .skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}
body .skeleton-panel,
body .skeleton-card,
body .home-store-card--skeleton,
body .home-latest-review--skeleton {
  pointer-events: none;
}
body .skeleton-text {
  height: 14px;
}
body .skeleton-badge {
  width: 56px;
  height: 28px;
  margin-bottom: 16px;
}
body .skeleton-store-name {
  width: min(72%, 320px);
  height: 30px;
  margin-bottom: 16px;
}
body .skeleton-store-meta {
  width: min(58%, 240px);
  height: 14px;
  margin-bottom: 10px;
}
body .skeleton-store-meta--short {
  width: min(42%, 180px);
  margin-bottom: 0;
}
body .skeleton-rating {
  width: 140px;
  height: 18px;
  margin-top: 20px;
}
body .skeleton-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
body .skeleton-button {
  height: 42px;
  flex: 1 1 0;
  border-radius: 4px;
}
body .skeleton-button--primary {
  flex: 1.2 1 0;
}
body .skeleton-button--small {
  width: 108px;
  min-width: 108px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 18px;
}
body .skeleton-review-title {
  width: min(56%, 220px);
  height: 24px;
  margin-bottom: 12px;
}
body .skeleton-review-meta {
  width: min(50%, 240px);
  height: 14px;
  margin-top: 10px;
}
body .skeleton-review-date {
  width: 120px;
  height: 14px;
  margin-top: 8px;
}
body .skeleton-review-line {
  width: 100%;
  height: 14px;
  margin-bottom: 10px;
}
body .skeleton-review-line--short {
  width: 74%;
  margin-bottom: 0;
}
body .skeleton-link {
  width: 64px;
  height: 14px;
}
body .skeleton-link--inline {
  margin-top: 12px;
}
body .skeleton-home-store-name {
  width: min(72%, 240px);
  height: 22px;
  margin-bottom: 14px;
}
body .skeleton-home-store-meta {
  width: min(58%, 220px);
  height: 14px;
  margin-bottom: 10px;
}
body .skeleton-home-store-meta--short {
  width: min(42%, 160px);
}
body .skeleton-home-rating {
  width: 120px;
  height: 18px;
  margin-top: 16px;
}
body .skeleton-latest-store {
  width: 160px;
  height: 18px;
  margin-bottom: 10px;
}
body .skeleton-latest-meta {
  width: 180px;
  height: 14px;
  margin-top: 10px;
}
body .header-search-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
body .header-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
body .header-search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
body .header-search-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #eee;
}
body .header-search-input-wrap {
  position: relative;
  flex: 1 1 auto;
}
body .header-search-input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .header-search-input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1px solid #d9d9df;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background: #fff;
}
body .header-search-input:focus {
  border-color: #590077;
}
body .header-search-close {
  border: 0;
  background: transparent;
  color: #590077;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
body .header-search-body {
  max-height: min(60vh, 480px);
  overflow-y: auto;
  padding: 8px 0;
}
body .header-search-suggest {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .header-search-suggest__item + .header-search-suggest__item {
  border-top: 1px solid #f2f2f4;
}
body .header-search-suggest__link {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: inherit;
}
body .header-search-suggest__link:hover {
  background: #faf7fc;
}
body .header-search-suggest__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1c;
}
body .header-search-suggest__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}
body .header-search-empty {
  margin: 0;
  padding: 24px 16px;
  font-size: 13px;
  color: #777;
  text-align: center;
}
body .is-header-search-open {
  overflow: hidden;
}
body .site-header {
  width: 100%;
  z-index: 1000;
  position: sticky;
  /* ここに注目! */
  top: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 60px;
  padding-left: 20px;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}
body .site-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2c0a57;
  min-width: 0;
}
body .site-header-actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
body .site-search-action {
  width: 62px;
  border: 0;
  background: #ffffff;
  color: #6f007e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
body .site-search-action-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .site-search-action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
body .site-search-action-label {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}
body .site-login-button {
  width: 62px;
  border: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(129, 54, 180, 0.92)), #540070;
}
body .site-login-button__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .site-login-button__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
body .site-login-button__label {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.container {
  width: min(100% - 32px, 960px);
  width: 100%;
}
.container.narrow {
  width: min(100% - 32px, 760px);
}

.page-header {
  margin-bottom: 20px;
}
.page-title {
  margin: 0 0 16px;
  font-size: 28px;
}
.page-description {
  margin: 0;
  color: #666666;
  line-height: 1.7;
}

.section-title {
  margin: 0 0 16px;
  font-size: 22px;
}

.panel {
  border-radius: 4px;
  background: #ffffff;
}
.home-panel {
  text-align: center;
}

.home-actions {
  margin-top: 20px;
}

.field-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-row {
  background: #F9F9F9;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.sort-dropdown {
  position: relative;
}

.sort-dropdown-button {
  display: inline-flex;
  gap: 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.sort-dropdown-icon {
  width: 18px;
  height: 18px;
  color: #590077;
}

#sortDropdownLabel {
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1c;
}

.sort-dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 999;
  margin-top: 8px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  min-width: 180px;
}

.sort-dropdown-menu button {
  border: none;
  background: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  color: #1a1a1c;
  font-size: 14px;
}

.sort-dropdown-menu button:hover {
  background: #f7f3fa;
}

.sort-dropdown.open .sort-dropdown-menu {
  display: flex;
}

.form-group {
  margin-bottom: 16px;
}
.form-group .form-counter {
  margin-top: 4px;
  font-size: 12px;
  color: #777;
  text-align: right;
}
.form-group .form-counter.is-error {
  color: #e60000;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 0px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  color: #1a1a1c;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button--primary {
  background: #ffffff;
  border-color: #dddddd;
  color: #1a1a1c;
  gap: 8px;
}
.button--primary .review-badge {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background: #D83357;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  right: 0;
  margin-right: 10px;
  position: absolute;
}
.button--ghost {
  background: #ffffff;
  gap: 8px;
}
.button--ghost .button-icon {
  color: #777777;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.page-review-confirm {
  background: #f7f7f7;
}

.review-confirm-page {
  margin: 32px 0;
  max-width: 720px;
}
.review-confirm-page h1 {
  font-size: 18px;
  padding: 0 20px;
  margin: 0;
  margin-bottom: 12px;
  color: #1a1a1c;
}

.review-confirm-list {
  background: #fff;
  padding: 0 20px;
}
.review-confirm-list .skeleton-row {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.review-confirm-list .skeleton {
  position: relative;
  overflow: hidden;
  background: #ececf1;
  border-radius: 6px;
}
.review-confirm-list .skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}
.review-confirm-list .skeleton-title {
  width: 140px;
  height: 16px;
  margin-bottom: 14px;
}
.review-confirm-list .skeleton-text {
  width: 60%;
  height: 16px;
}

.review-confirm-row {
  padding: 24px 0px;
  border-bottom: 1px solid #ddd;
}

.review-confirm-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1c;
}

.review-confirm-label span {
  color: #d93025;
}

.review-confirm-value {
  font-size: 14px;
  line-height: 1.9;
  color: #1a1a1c;
  word-break: break-word;
}

.review-confirm-stars {
  display: flex;
  gap: 12px;
  font-size: 32px;
  line-height: 1;
}

.review-confirm-stars span {
  color: #d9d9d9;
}

.review-confirm-stars span.is-active {
  color: #ffa000;
}

.review-confirm-actions {
  display: flex;
  gap: 12px;
  padding: 24px 20px;
  background: #ffffff;
  color: #1a1a1c;
}
.review-confirm-actions .review-confirm-back {
  color: #1a1a1c;
  background: #ffffff;
  border: 1px solid #dddddd;
}
.review-confirm-actions .review-confirm-submit {
  background: linear-gradient(135deg, #ff7300, #fc923c);
  border: 1px solid #FF6A00;
  color: #ffffff;
}

.review-confirm-back,
.review-confirm-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  height: 52px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.page-review-thanks {
  background: #f3f1f4;
  min-height: 100vh;
}

.review-thanks-page {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-thanks-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
}

.checkmark {
  width: 52px;
  height: 52px;
}

.checkmark-circle {
  fill: none;
  stroke: #6a0080;
  stroke-width: 3;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: circle-draw 0.6s ease forwards;
}

.checkmark-check {
  fill: none;
  stroke: #6f007e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check-draw 0.4s ease 0.6s forwards;
}

@keyframes circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes check-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.review-thanks-title {
  margin: 0 0 32px;
  color: #6a0080;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  animation: thanks-fade-up 0.5s ease-out 0.15s both;
}

.review-thanks-card {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  padding: 32px 20px;
  margin-bottom: 24px;
  animation: thanks-fade-up 0.5s ease-out 0.3s both;
}

.review-thanks-card p {
  margin: 0 0 14px;
  color: #1a1a1c;
  font-size: 14px;
}

.review-thanks-card p:last-child {
  margin-bottom: 0;
}

.review-thanks-timer {
  margin: 0 0 24px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  animation: thanks-fade-up 0.5s ease-out 0.45s both;
}

.review-thanks-timer span {
  font-weight: 700;
  color: #6f007e;
}

.review-thanks-button {
  width: 100%;
  max-width: 272px;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7300, #fc923c);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: thanks-fade-up 0.5s ease-out 0.6s both;
}

@keyframes thanks-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes thanks-fade-up {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.store-list,
#reviewsList {
  display: grid;
  gap: 20px;
  padding: 0 20px 0 20px;
}
.store-list .panel-none,
#reviewsList .panel-none {
  padding: 0;
  margin: 0;
  align-content: center;
  text-align: center;
  height: 150px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  color: #666666;
  font-size: 14px;
}

.store-card {
  padding: 20px;
  border: 1px solid #e6e6e6;
  position: relative;
}
.store-card .store-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.store-card .store-actions,
.store-card .store-actions * {
  z-index: 2;
}
.store-card .store-name, .store-card .store-area, .store-card .store-genre, .store-card .rating-row {
  color: #1a1a1c;
}
.store-card .rating-row .rating-display .rating-number {
  color: #e60000;
}

.store-status {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #b40b0b;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
}

.page-detail .review-header .review-container {
  padding: 0 20px 4px 20px;
  border-bottom: 1px #dddddd solid;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.page-detail .review-header .review-container .review-date {
  font-size: 11px;
  color: #777777;
}
.page-detail #reviewsList {
  padding: 0;
}
.page-detail #reviewsList p.panel {
  margin: 0 auto;
  align-content: center;
  text-align: center;
  height: 150px;
  width: 90%;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  color: #666666;
  font-size: 14px;
}
.page-detail .store-section {
  display: flex;
  border-radius: 0;
  flex-direction: column;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 78, 201, 0.12);
  background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(62, 13, 95, 0.92)), #590077;
}
.page-detail .store-section::before, .page-detail .store-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.page-detail .store-section::before {
  top: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
}
.page-detail .store-section::after {
  bottom: -110px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
}
.page-detail .store-section .panel {
  box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0);
  background: none;
  padding: 0px;
  color: #ffffff;
  color: #3292FF;
}
.page-detail .store-section .panel .store-name,
.page-detail .store-section .panel .store-area,
.page-detail .store-section .panel .store-genre,
.page-detail .store-section .panel .review-count {
  color: #ffffff;
  text-decoration-color: #ffffff;
}
.page-detail .store-section .panel .rating-row .rating-display {
  margin-bottom: 0;
}
.page-detail .store-section .panel .rating-row .rating-number {
  color: #ffffff;
}
.page-detail .store-section .panel--compact {
  padding: 0px;
  gap: 12px;
}
.page-detail .store-section .store-actions .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.page-detail .store-section .store-actions .button--ghost {
  padding: 11px;
}
.page-detail .store-section .store-actions .button--primary {
  z-index: 1;
  background: linear-gradient(135deg, #ff7300, #fc923c);
  border: none;
  gap: 8px;
  width: 100%;
}
.page-detail .store-section .store-actions .button--primary .button-label {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
.page-detail .store-section .store-actions .button-icon {
  width: 18px;
  height: 18px;
  display: flex;
}
.page-detail .store-section .store-actions .button-icon svg {
  width: 18px;
  height: 18px;
}
.page-detail .store-section .store-actions .button-icon svg path {
  width: 18px;
  height: 18px;
}

.store-name {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #1a1a1c;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.store-area,
.store-genre,
.review-count,
.rating-number {
  color: #e60000;
  font-weight: 700;
}

.store-area,
.store-genre {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.store-area .store-icon,
.store-genre .store-icon {
  width: 10px;
  height: 10px;
  color: #3292FF;
  flex-shrink: 0;
}

.store-genre {
  margin: 6px 0 8px;
  font-size: 14px;
}

.store-area,
.store-genre {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1a1a1c;
}

.rating-row,
.store-actions,
.store-summary,
.rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-actions {
  margin-top: 12px;
}
.rating-display {
  gap: 6px;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.rating-stars::before {
  content: "★★★★★";
  color: #d9d9d9;
}
.rating-stars::after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--percent);
  overflow: hidden;
  white-space: nowrap;
  color: #FF9D00;
}

.review-comment-wrap {
  padding: 20px;
  border-bottom: #dddddd 1px solid;
  border-top: #dddddd 1px solid;
}

.review-comment-box {
  --collapsed-height: 101px;
  position: relative;
  overflow: hidden;
  max-height: none;
  transition: max-height 0.32s ease;
}

.review-comment-box.is-collapsible.is-collapsed {
  max-height: var(--collapsed-height);
}

.review-comment-box.is-collapsible.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 55%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}

.review-card .review-comment {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-comment-toggle {
  display: none;
  margin: 8px 0 0 auto;
  padding: 0;
  border: 0;
  background: none;
  color: #3292FF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.review-card.is-highlighted-review {
  animation: reviewHighlight 2s ease forwards;
}

@keyframes reviewHighlight {
  0% {
    outline: 2px solid rgba(119, 0, 83, 0.4);
    box-shadow: 0 0 0 8px rgba(119, 0, 83, 0.18);
  }
  60% {
    outline: 2px solid rgba(119, 0, 83, 0.2);
    box-shadow: 0 0 0 6px rgba(119, 0, 83, 0.08);
  }
  100% {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
.review-card .review-comment {
  padding: 0;
  margin: 0;
  border-bottom: 0;
  line-height: 1.8;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.review-comment--collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 7.2em;
}

.review-comment--collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.6em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(249, 249, 249, 0.85) 45%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}

.review-comment.is-open {
  display: block;
  max-height: none;
  overflow: visible;
}

.review-comment-toggle {
  margin-top: 8px;
  margin-left: auto;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: #3292FF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.review-card .review-content {
  padding: 20px;
  border-bottom: #dddddd 1px solid;
}
.review-card .review-content .review-title {
  margin: 0 0 8px;
  font-size: 16px;
}
.review-card .review-comment {
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
}
.review-card h3 {
  padding: 20px 20px 0 20px;
  font-size: 16px;
}
.review-card .review-title,
.review-card .review-comment {
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
}

.review-meta {
  background: #fcfcfc;
  width: 100%;
  margin: 0;
  padding: 12px 20px;
  color: #1a1a1c;
  font-size: 12px;
}

.old-review-warning {
  padding: 12px 20px;
  background: #ffeaea;
  color: #e60000;
  font-size: 12px;
  border-top: #dddddd 1px solid;
}

.star-input {
  display: flex;
  gap: 5px;
  font-size: 24px;
  cursor: pointer;
}

.input-star {
  color: gray;
}
.input-star.selected {
  color: gold;
}

@media (max-width: 440px) {
  .page-detail .container,
  .page-detail .container.narrow {
    width: 100%;
  }
  .rating-stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
  }
  .rating-stars::before {
    content: "★★★★★";
    color: #d9d9d9;
  }
  .rating-row .rating-display .rating-number {
    font-weight: 700;
    color: #e60000;
    color: #ffffff;
  }
  .rating-row .review-count {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
  }
  .page-title {
    font-size: 24px;
  }
  .store-name {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
  }
  .store-area {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
  }
  .store-genre {
    color: #ffffff;
    font-size: 12px;
    margin: 6px 0 12px;
    font-weight: 400;
  }
  .store-actions .button {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .store-actions .button--primary {
    width: 100%;
    border-radius: 999px;
    position: relative;
  }
  .store-actions .button--ghost {
    padding: 11px;
  }
  .store-actions .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 18px;
    height: auto;
  }
  .store-actions .button-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  .store-actions .button-label {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #888;
  }
  .review-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    margin: 0;
    justify-content: space-between;
    padding: 12px 20px;
  }
  .review-actions svg {
    margin-bottom: 2px;
  }
  .review-actions .review-report {
    color: #bbb;
    font-size: 12px;
  }
  .review-actions .review-helpful {
    gap: 4px;
    display: flex;
    align-items: center;
    color: #bbb;
    background: none;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    padding: 8px 12px;
    transition: background-color 0.2s ease;
  }
  .review-actions .review-helpful.is-helpful {
    color: #770053;
    font-weight: 500;
  }
  .review-actions .review-helpful.is-helpful svg path {
    stroke: #770053;
    fill: #770053;
  }
  .page-review {
    background: #f3f3f3;
    color: #1a1a1c;
  }
  .page-review .review-page {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .page-review .review-page .panel {
    background: rgba(26, 26, 28, 0);
  }
  .page-review .review-page .panel .store-name {
    text-decoration-color: #ffffff;
  }
  .page-review .page-title,
  .page-review .section-title,
  .page-review .container,
  .page-review .container.narrow {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .page-review #storeInfo {
    margin: 0;
    display: flex;
    border-radius: 0;
    flex-direction: column;
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(122, 78, 201, 0.12);
    background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(62, 13, 95, 0.92)), #590077;
  }
  .page-review #storeInfo::before, .page-review #storeInfo::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }
  .page-review #storeInfo::before {
    top: -80px;
    right: -50px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
  }
  .page-review #storeInfo::after {
    bottom: -140px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
  }
  .page-review .store-section {
    border-radius: 0;
    margin: 0;
  }
  .page-review .review-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
  }
  .page-review .review-block {
    background: #ffffff;
    padding: 8px 20px;
  }
  .review-block .review-section:first-child {
    padding: 24px 0;
    border-top: 0px solid #dddddd;
  }
  .page-review .review-section,
  .page-review .rating-item {
    padding: 24px 0;
    border-top: 1px solid #dddddd;
  }
  .page-review .review-label {
    margin-bottom: 12px;
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
  }
  .page-review .review-label span {
    color: #d83357;
  }
  .page-review .review-select,
  .page-review .review-input,
  .page-review .review-textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background: #ffffff;
    font: inherit;
    color: #1a1a1c;
  }
  .page-review .review-select,
  .page-review .review-input {
    margin-top: 16px;
    min-height: 48px;
    padding: 0 12px;
  }
  .page-review .review-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #1a1a1c;
  }
  .page-review .review-select:invalid {
    color: #d9d9d9;
  }
  .page-review .review-select:focus {
    outline: none;
    border-color: #6f007e;
    box-shadow: 0 0 0 1px #6f007e;
  }
  .page-review .review-select option {
    background: #ffffff;
    color: #1a1a1c;
  }
  .page-review .review-select option:checked,
  .page-review .review-select option:hover,
  .page-review .review-select option:focus {
    background: #6f007e;
    color: #ffffff;
  }
  .page-review .review-textarea {
    min-height: 220px;
    padding: 14px;
    resize: vertical;
  }
  .page-review .review-input::-moz-placeholder, .page-review .review-textarea::-moz-placeholder {
    color: #d9d9d9;
    margin-top: 12px;
    font-size: 14px;
  }
  .page-review .review-input::placeholder,
  .page-review .review-textarea::placeholder {
    color: #d9d9d9;
    margin-top: 12px;
    font-size: 14px;
  }
  .page-review .review-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
  }
  .page-review .review-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  .page-review .review-radio input {
    accent-color: #6f007e;
  }
  .page-review .rating-item:first-child {
    border-top: 0;
  }
  .page-review .rating-help {
    margin: -4px 0 14px;
    font-size: 12px;
    color: #8a8a8a;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .page-review .rating-help .help-icon {
    background: #8a8a8a;
    font-size: 8px;
    width: 12px;
    height: 12px;
    line-height: 1;
    display: inline-flex;
    border-radius: 999px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
  }
  .page-review .star-input {
    display: flex;
    gap: 16px;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }
  .page-review .input-star {
    color: #d3d3d3;
    transition: color 0.2s ease;
  }
  .page-review .input-star.selected {
    color: #ff9d00;
  }
  .page-review .review-counter {
    margin-top: 12px;
    text-align: right;
    font-size: 11px;
    color: #7d7d7d;
  }
  .page-review .review-counter.is-error {
    color: #d83357;
    font-weight: 700;
  }
  .page-review .review-template-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0;
    background: #f4f4f4;
    padding: 0px 20px;
    border: 1px solid #dddddd;
    border-radius: 4px;
  }
  .page-review .review-template-button {
    color: #1a1a1c;
    font-size: 14px;
  }
  .review-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .review-switch input {
    display: none;
  }
  .review-switch-ui {
    width: 44px;
    height: 24px;
    background: #b4b4b4;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
  }
  .review-switch-ui::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
  }
  /* ON状態 */
  .review-switch input:checked + .review-switch-ui {
    background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(129, 54, 180, 0.92)), #540070;
  }
  .review-switch input:checked + .review-switch-ui::after {
    transform: translateX(20px);
  }
  .page-review .review-note-button {
    width: 100%;
    margin-bottom: 24px;
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: #1a1a1c;
    color: #ffffff;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 14px;
  }
  .review-check-box {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 12px;
    padding: 24px 0px 32px;
  }
  .review-check-box .page-review .review-check {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .page-review .review-check input {
    accent-color: #6f007e;
  }
  .page-review .review-check span {
    color: #1a1a1c;
    font-weight: 500;
  }
  .page-review .review-notes {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 16px 0;
  }
  .page-review .review-notes p {
    margin: 0 0 6px;
    font-size: 12px;
    color: #1a1a1c;
  }
  .page-review .review-notes a {
    color: #6f007e;
    font-weight: 700;
  }
  .page-review .review-submit {
    width: 100%;
    margin: 32px 0;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7300, #fc923c);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
  .page-review .review-submit:disabled {
    background: #cfcfcf;
    color: #ffffff;
    cursor: not-allowed;
  }
}
@media (max-width: 440px) and (max-width: 440px) {
  .page-review .review-radio-grid {
    gap: 12px 18px;
  }
  .page-review .star-input {
    gap: 12px;
    font-size: 32px;
  }
}
@media (max-width: 440px) {
  .page-home-top .home-latest-review-title,
  .page-home-top .home-latest-review-comment,
  .page-home-top .home-latest-review-info h3,
  .page-home-top .home-latest-review-info h3 a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .page-home-top .home-latest-review-comment-wrap {
    margin-top: 2px;
  }
  .page-home-top .home-latest-review-comment-box {
    --line-height: 1.9;
    --collapsed-lines: 4;
    --collapsed-height: calc(1em * var(--line-height) * var(--collapsed-lines));
    position: relative;
    overflow: hidden;
    max-height: none;
    transition: max-height 0.32s ease;
  }
  .page-home-top .home-latest-review-comment-box.is-collapsible.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(1em * var(--line-height) * 2);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 55%, rgb(255, 255, 255) 100%);
    pointer-events: none;
  }
  .page-home-top .home-latest-review-comment {
    margin: 0;
    font-size: 13px;
    color: #4c4c4c;
    line-height: 1.9;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .page-home-top .home-latest-review-toggle {
    display: none;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: #3292FF;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .page-home-top .home-latest-review-body p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
  .page-home-top {
    background: #f5f5f5;
    color: #24212c;
    overflow-x: clip;
  }
  .page-home-top {
    overflow-x: clip;
  }
  .page-home-top body,
  .page-home-top .home-top {
    overflow-x: clip;
  }
  .page-home-top .home-card-row,
  .page-home-top .home-review-row,
  .page-home-top .home-category-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .page-home-top .home-card-row::-webkit-scrollbar,
  .page-home-top .home-review-row::-webkit-scrollbar,
  .page-home-top .home-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .page-home-top .home-top {
    width: 100%;
    min-height: 100vh;
  }
  .page-home-top .home-hero {
    overflow: hidden;
    background: #f5f5f5;
  }
  .page-home-top .home-hero-copy {
    padding: 20px 20px 0;
  }
  .page-home-top .home-hero-lead,
  .page-home-top .home-hero-sub {
    margin: 0;
    font-weight: 900;
    color: #2a2433;
    letter-spacing: 0.02em;
  }
  .page-home-top .home-hero-lead {
    font-size: 26px;
    line-height: 1.4;
  }
  .page-home-top .home-hero-sub {
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.4;
    gap: 6px;
  }
  .page-home-top .home-hero-sub svg {
    margin-left: 8px;
  }
  .page-home-top .home-hero-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-right: 4px;
    background: linear-gradient(135deg, #590077, #8b3dca);
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
  }
  .page-home-top .home-hero-visual {
    position: relative;
    height: 470px;
    font-size: 24px;
  }
  .page-home-top .home-hero-arc {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity, filter;
    animation: heroArcBreath 14s ease-in-out infinite;
  }
  .page-home-top .home-hero-arc--purple {
    width: 600px;
    height: 600px;
    left: 20px;
    top: 10px;
    background: linear-gradient(180deg, #6f007e 0%, #8b37b6 100%);
    animation-delay: 0s;
  }
  .page-home-top .home-hero-arc--orange {
    width: 600px;
    height: 600px;
    right: -400px;
    top: 0px;
    border: 14px solid #fff7ef;
    background: linear-gradient(180deg, #f6c49f 0%, #e97a74 100%);
    animation-delay: 4s;
  }
  .page-home-top .home-hero-arc {
    will-change: transform, opacity;
    transform-origin: center;
    animation-duration: 18s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .page-home-top .home-hero-arc--purple {
    animation-name: heroArcPurpleFloat;
    opacity: 0.92;
  }
  .page-home-top .home-hero-arc--orange {
    animation-name: heroArcOrangeFloat;
    opacity: 0.88;
  }
  @keyframes heroArcPurpleFloat {
    0% {
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      opacity: 0.92;
    }
    20% {
      transform: translate3d(4px, -6px, 0) scale(1.03) rotate(0.8deg);
      opacity: 0.88;
    }
    40% {
      transform: translate3d(-3px, -10px, 0) scale(1.06) rotate(-0.6deg);
      opacity: 0.82;
    }
    60% {
      transform: translate3d(-6px, 2px, 0) scale(1.04) rotate(-1deg);
      opacity: 0.86;
    }
    80% {
      transform: translate3d(3px, 5px, 0) scale(1.02) rotate(0.5deg);
      opacity: 0.9;
    }
    100% {
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      opacity: 0.92;
    }
  }
  @keyframes heroArcOrangeFloat {
    0% {
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      opacity: 0.88;
    }
    20% {
      transform: translate3d(-5px, 4px, 0) scale(1.02) rotate(-0.7deg);
      opacity: 0.84;
    }
    40% {
      transform: translate3d(4px, -4px, 0) scale(1.05) rotate(0.9deg);
      opacity: 0.79;
    }
    60% {
      transform: translate3d(7px, -9px, 0) scale(1.07) rotate(1.1deg);
      opacity: 0.74;
    }
    80% {
      transform: translate3d(-2px, -3px, 0) scale(1.03) rotate(0.3deg);
      opacity: 0.83;
    }
    100% {
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      opacity: 0.88;
    }
  }
  .page-home-top .home-hero-shortcuts {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
  .home-hero-shortcuts {
    display: flex;
    justify-content: center;
    max-width: 360px;
    margin: auto;
  }
  .home-shortcut {
    width: clamp(70px, 25vw, 100px);
    aspect-ratio: 1;
    flex-shrink: 0;
  }
  .home-shortcut svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .list-filter-panel {
    background: #6f007e;
  }
  .home-search {
    margin-bottom: 12px;
  }
  .list-filter-summary {
    background: #ffffff;
    overflow: hidden;
    background: #ffffff;
  }
  .list-filter-summary .home-category-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    scrollbar-width: none;
  }
  .list-filter-summary .home-category-tab.is-active {
    background: linear-gradient(135deg, #590077, #8b3dca);
    border-color: #6f007e;
    color: #ffffff;
    font-weight: 500;
  }
  .list-filter-summary .home-category-tab {
    flex: 0 0 auto;
    min-width: 82px;
    min-height: 30px;
    padding: 4px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #ffffff;
    color: #1a1a1c;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
  }
  .list-filter-summary__item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid #e6e6e6;
    background: #ffffff;
    width: 100%;
    text-align: left;
    font: inherit;
    padding: 16px 20px 16px 32px;
  }
  .list-filter-summary__icon {
    color: #6f007e;
    flex-shrink: 0;
    align-items: center;
    display: flex;
    width: 18px;
  }
  .list-filter-summary__content {
    flex: 1;
  }
  .list-filter-summary__label {
    font-size: 12px;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
  }
  .list-filter-summary__label--muted {
    color: #b9b9b9;
  }
  .list-filter-summary__action {
    font-size: 13px;
    font-weight: 500;
    color: #6f007e;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .list-filter-summary__arrow {
    font-size: 14px;
    line-height: 1;
  }
  .area-panel {
    margin-top: 60px;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #f9f9f9;
    overflow-y: auto;
    padding-bottom: 110px;
  }
  .area-panel__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid #dddddd;
  }
  .area-panel__back {
    border: 0;
    background: transparent;
    color: #1a1a1c;
    font: inherit;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    margin-left: 20px;
    font-size: 32px;
  }
  .area-panel__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1c;
    text-align: center;
    width: 100%;
  }
  .area-pref-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .area-check-all--global {
    margin-bottom: 0;
  }
  .area-check-all--global span {
    font-size: 14px;
  }
  .area-pref__button {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    background: #ffffff;
    color: #1a1a1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font: inherit;
    cursor: pointer;
  }
  .area-pref__button .area-pref__name {
    font-size: 14px;
  }
  .area-pref__toggle {
    color: #6f007e;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
  }
  .area-pref__body {
    display: none;
    margin-top: 14px;
  }
  .area-pref.is-open .area-pref__body {
    display: block;
  }
  .area-check-all {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1c;
    display: flex;
    align-items: center;
    gap: 10px;
    font: inherit;
    cursor: pointer;
    position: relative;
  }
  .area-check-all span {
    font-size: 14px;
  }
  .area-check-all.is-selected {
    border-color: #6f007e;
    background: #f7f3f8;
    color: #6f007e;
    font-weight: 500;
  }
  .area-check-all.is-selected span {
    font-size: 14px;
  }
  .area-check-all__icon {
    display: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
  }
  .area-check-all.is-selected .area-check-all__icon {
    display: block;
    font-weight: 600;
  }
  .area-pref__section-title {
    margin: 16px 0 6px 0;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
  }
  .area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .area-chip {
    position: relative;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    background: #ffffff;
    color: #1a1a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
  }
  .area-chip__label {
    display: block;
    width: 80%;
    text-align: center;
  }
  .area-chip__icon {
    display: none;
    position: absolute;
    top: 8px;
    right: 10px;
    color: #6f007e;
    top: 50%;
    font-size: 18px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
  }
  .area-chip.is-selected {
    border-color: #6f007e;
    background: #f7f3f8;
    color: #6f007e;
    font-weight: 500;
  }
  .area-chip.is-selected .area-chip__icon {
    display: block;
    font-size: 12px;
    font-weight: 600;
  }
  .area-panel__footer {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #dddddd;
    justify-content: space-between;
    align-items: center;
  }
  .area-panel__count {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1c;
    width: 100%;
  }
  .area-panel__count #areaHitCount {
    font-size: 18px;
    color: #e60000;
    margin-right: 2px;
  }
  .area-panel__submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: #FF6A00;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
  }
  .area-panel[hidden] {
    display: none !important;
  }
  .page-home-top .home-search-panel {
    background: #f1f1f1;
  }
  .home-search {
    padding: 12px 20px;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(129, 54, 180, 0.92)), #590077;
    overflow: hidden;
  }
  .home-search::before, .home-search::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }
  .home-search::before {
    top: -110px;
    right: 0px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
  }
  .home-search::after {
    bottom: -170px;
    left: -20px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.05);
  }
  .home-search-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
  }
  .home-search-box__icon {
    width: 16px;
    height: 16px;
    color: #6f007e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .home-search-box__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .home-search-box__input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 16px;
  }
  .home-search-box__input::-moz-placeholder {
    color: #d0d0d0;
  }
  .home-search-box__input::placeholder {
    color: #d0d0d0;
  }
  .home-search-box__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
            appearance: none;
  }
  .page-home-top .home-search-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(89, 0, 119, 0.95), rgba(129, 54, 180, 0.92)), #590077;
  }
  .page-home-top .home-search-links::before, .page-home-top .home-search-links::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }
  .page-home-top .home-search-links::before {
    top: -90px;
    right: 0px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
  }
  .page-home-top .home-search-links::after {
    bottom: -150px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
  }
  .page-home-top .home-search-link {
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    border-radius: 4px;
    background: #ffffff;
    text-decoration: none;
    color: #1a1a1c;
    font-size: 12px;
    font-weight: 500;
  }
  .page-home-top .home-search-link .home-search-link-label {
    font-size: 14px;
  }
  .page-home-top .home-search-link .home-search-link-label span {
    font-weight: 700;
  }
  .page-home-top .home-search-link strong {
    font-size: 14px;
  }
  .home-search-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .home-search-link-icon .icon-svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .page-home-top .home-category-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    scrollbar-width: none;
  }
  .page-home-top .home-category-tab {
    flex: 0 0 auto;
    min-width: 82px;
    min-height: 30px;
    padding: 4px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #ffffff;
    color: #1a1a1c;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
  }
  .page-home-top .home-category-tab.is-active {
    background: linear-gradient(135deg, #590077, #8b3dca);
    border-color: #6f007e;
    color: #ffffff;
    font-weight: 500;
  }
  .page-home-top .home-section {
    padding: 40px 0px 0;
  }
  .page-home-top .home-section-head {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .page-home-top .home-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1c;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .page-home-top .home-section-title .home-section-title-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .page-home-top .home-section-title .home-section-title-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .page-home-top .home-section-more {
    color: #3292FF;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    display: flex;
    gap: 4px;
  }
  .page-home-top .home-section-more .home-section-more__arrow {
    margin-top: 2px;
  }
  .page-home-top .home-card-row,
  .page-home-top .home-review-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px 20px;
    width: 100%;
    box-sizing: border-box;
    scroll-padding-left: 20px;
    scroll-padding-right: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .page-home-top .home-card-row .home-card-row > *:first-child,
  .page-home-top .home-card-row .home-review-row > *:first-child,
  .page-home-top .home-review-row .home-card-row > *:first-child,
  .page-home-top .home-review-row .home-review-row > *:first-child {
    margin-left: 0;
  }
  .page-home-top .home-card-row::after,
  .page-home-top .home-review-row::after {
    content: "";
    flex: 0 0 8px;
  }
  .page-home-top .home-store-card {
    flex: 0 0 203px;
    width: 203px;
    height: 173px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .home-store-card__inner {
    position: relative;
    height: 100%;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
  }
  .home-store-card__arrow {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
    color: #b7b7b7;
    font-weight: 700;
    pointer-events: none;
  }
  .home-store-card:hover {
    border-color: #d6c1d2;
  }
  .home-store-card:active {
    transform: translateY(1px);
  }
  .home-store-name {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    height: 3.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1a1a1c;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .page-home-top .home-store-name a {
    color: #404040;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 14px;
  }
  .page-home-top .home-store-meta {
    margin: 0 0 4px;
    font-size: 10px;
    color: #1a1a1c;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-items: center;
  }
  .page-home-top .home-store-meta span {
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .page-home-top .home-store-meta-icon {
    width: 10px;
    height: 10px;
    color: #3292FF;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .page-home-top .home-store-meta-icon .store-icon {
    width: 10px;
    height: 10px;
    display: block;
  }
  .page-home-top .home-store-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
  }
  .page-home-top .home-rating-display {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .page-home-top .home-rating-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
  }
  .page-home-top .home-rating-stars::before {
    content: "★★★★★";
    color: #d9d9d9;
  }
  .page-home-top .home-rating-stars::after {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--percent);
    overflow: hidden;
    white-space: nowrap;
    color: #ff9d00;
  }
  .page-home-top .home-rating-number {
    color: #e53935;
    font-size: 14px;
    font-weight: 800;
  }
  .page-home-top .home-store-count {
    color: #1a1a1c;
    font-size: 12px;
  }
  .page-home-top .home-latest-review {
    flex: 0 0 320px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
  }
  .page-home-top .home-latest-review-head {
    gap: 12px;
    border-bottom: 1px solid #ededed;
    width: 100%;
  }
  .page-home-top .home-latest-review-info h3 {
    padding: 20px 20px 12px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1c;
  }
  .page-home-top .home-latest-review-info h3 a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 14px;
  }
  .page-home-top .home-latest-review-rating {
    padding: 0px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-home-top .home-latest-review-meta {
    margin: 0;
    padding: 8px 20px;
    font-size: 12px;
    border-top: 1px solid #ededed;
    width: 100%;
    background: #fcfcfc;
  }
  .page-home-top .home-latest-review-body {
    padding: 20px;
  }
  .page-home-top .home-latest-review-body h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #1a1a1c;
  }
  .page-home-top .home-latest-review-body p {
    margin: 0;
    font-size: 14px;
    color: #1a1a1c;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .page-home-top .home-latest-review-body a {
    display: inline-block;
    margin-top: 8px;
    color: #3292FF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: right;
  }
  .page-home-top .home-latest-review-date {
    color: #888;
    font-size: 11px;
  }
  .page-home-top .home-store-request {
    height: 120px;
    background: #9c9c9c;
    margin: 0 20px;
  }
  .home-back-top {
    width: 100%;
    margin-top: 52px;
    padding: 10px 0;
    border: 0;
    background: linear-gradient(135deg, #590077, #8b3dca);
    color: #ffffff;
    text-align: center;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }
  .home-cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px 12px;
    background: #ffffff;
  }
  .home-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ff7300, #fc923c);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    flex-direction: column;
    gap: 4px;
  }
  .home-footer {
    background: #ffffff;
    padding: 0 20px 20px;
  }
  .home-footer-nav,
  .home-footer-contact {
    display: flex;
    flex-direction: column;
  }
  .home-footer-nav a,
  .home-footer-contact a {
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
    color: #1a1a1c;
    text-decoration: none;
    font-size: 13px;
  }
  .home-footer-contact h3 {
    margin: 18px 0 8px;
    font-size: 18px;
  }
  .home-footer-brand {
    padding-top: 28px;
    text-align: center;
  }
  .home-logo--footer {
    justify-content: center;
    margin-bottom: 24px;
  }
  .home-footer-brand p {
    margin: 0;
    color: #666666;
    font-size: 10px;
  }
  .page-home-top .home-empty {
    padding: 0;
    margin: 0;
    align-content: center;
    text-align: center;
    height: 150px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #666666;
    font-size: 14px;
  }
}
@media (max-width: 440px) and (max-width: 440px) {
  .page-home-top .home-hero-lead,
  .page-home-top .home-hero-sub {
    display: flex;
    font-size: 24px;
    align-items: center;
    color: #1a1a1c;
  }
  .page-home-top .home-store-card {
    flex-basis: 203px;
  }
  .page-home-top .home-latest-review {
    flex-basis: 320px;
  }
}
/* admin */
.admin-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.admin-hero {
  margin-bottom: 24px;
}

.admin-hero h1 {
  font-size: 28px;
  margin: 0 0 8px;
}

.admin-hero p {
  color: #777;
  margin: 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.admin-panel {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(89, 0, 119, 0.08);
  border: 1px solid rgba(89, 0, 119, 0.08);
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel__title {
  font-size: 20px;
  margin: 0;
}

.admin-count {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #590077, #9b2cff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.admin-review {
  border-radius: 18px;
  padding: 18px;
  background: #faf7ff;
  border: 1px solid rgba(89, 0, 119, 0.08);
  margin-bottom: 14px;
}

.admin-review h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.admin-review__meta {
  color: #777;
  font-size: 13px;
  margin-bottom: 12px;
}

.admin-review__comment {
  line-height: 1.75;
  color: #333;
  white-space: pre-wrap;
}

.admin-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.admin-actions .button {
  min-height: 42px;
}

@media (max-width: 430px) {
  .admin-page {
    padding: 20px 14px 64px;
  }
  .admin-hero h1 {
    font-size: 24px;
  }
  .admin-panel {
    padding: 16px;
    border-radius: 18px;
  }
  .admin-panel__head {
    align-items: flex-start;
  }
  .admin-review {
    padding: 15px;
  }
  .admin-actions {
    flex-direction: column;
  }
  .admin-actions .button {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
/* admin dashboard layout */
.admin-shell {
  min-height: 100vh;
  background: #f7f3fb;
  color: #1a1a1c;
}

.admin-shell .admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  padding: 24px 18px;
  background: #1f0730;
  color: #fff;
  z-index: 20;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.admin-main {
  min-height: 100vh;
  margin-left: 260px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(247, 243, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(89, 0, 119, 0.08);
}

.admin-topbar h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.admin-kicker {
  margin: 0 0 4px;
  color: #75009d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: #590077;
  color: #fff;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
}

.admin-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 80px;
}

.admin-status {
  min-height: 20px;
  margin: 0 0 16px;
  color: #666;
  font-weight: 700;
}

.admin-status--error {
  color: #b42318;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stat-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(89, 0, 119, 0.08);
  box-shadow: 0 12px 34px rgba(89, 0, 119, 0.08);
  color: inherit;
  text-decoration: none;
}

.admin-stat-card span,
.admin-stat-card small {
  color: #777;
  font-weight: 700;
}

.admin-stat-card strong {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  color: #590077;
}

.admin-stat-card--total {
  background: linear-gradient(135deg, #590077, #9b2cff);
  color: #fff;
}

.admin-stat-card--total span,
.admin-stat-card--total small,
.admin-stat-card--total strong {
  color: #fff;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-link {
  color: #590077;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.admin-mini-list {
  display: grid;
  gap: 10px;
}

.admin-mini-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: #faf7ff;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(89, 0, 119, 0.08);
}

.admin-mini-item span {
  font-weight: 800;
}

.admin-mini-item small {
  color: #777;
}

.admin-review-list {
  display: grid;
  gap: 14px;
}

.admin-review-card {
  border-radius: 20px;
  padding: 18px;
  background: #faf7ff;
  border: 1px solid rgba(89, 0, 119, 0.08);
}

.admin-review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-review-card__label {
  margin: 0 0 6px;
  color: #75009d;
  font-size: 12px;
  font-weight: 800;
}

.admin-review-card h3 {
  margin: 0;
  font-size: 18px;
}

.admin-rating {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #590077;
  font-weight: 800;
}

.admin-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.admin-meta-list div {
  min-width: 0;
}

.admin-meta-list dt {
  color: #777;
  font-size: 12px;
  font-weight: 800;
}

.admin-meta-list dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.admin-review-card__comment {
  margin: 0;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
}

.admin-empty {
  margin: 0;
  padding: 20px;
  border-radius: 16px;
  background: #faf7ff;
  color: #666;
  text-align: center;
  font-weight: 700;
}

.admin-empty--error {
  color: #b42318;
  background: #fff1f0;
}

@media (max-width: 900px) {
  .admin-shell .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.18);
  }

  .admin-shell .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .admin-topbar {
    padding: 18px 18px;
  }

  .admin-content {
    padding: 22px 18px 64px;
  }

  .admin-stats-grid,
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .admin-topbar {
    align-items: flex-start;
  }

  .admin-topbar h1 {
    font-size: 23px;
  }

  .admin-review-card__top,
  .admin-actions {
    flex-direction: column;
  }

  .admin-actions .button {
    width: 100%;
  }

  .admin-meta-list {
    grid-template-columns: 1fr;
  }

  .admin-stat-card,
  .admin-panel,
  .admin-review-card {
    border-radius: 18px;
    padding: 16px;
  }
}
