:root {
  /* typography */
  --fs-xxs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-md: 14px;
  --fs-lg: 16px;

  /* spacing */
  --space-1: 6px;
  --space-2: 8px;
  --space-3: 10px;
  --space-4: 12px;
  --space-5: 16px;

  /* fixed bars */
  --header-pad-y: 10px;
  --header-pad-x: 12px;

  --footer-pad-y: 8px;
  --footer-pad-x: 12px;

  /* buttons */
  --btn-pad-y: 12px;
  --btn-pad-x: 14px;
  --btn-radius: 12px;
}

#map {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.site-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--header-pad-y) var(--header-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.site-logo {
  text-decoration: none;
  font-weight: 700;
  color: #111;
  font-size: var(--fs-lg);
  line-height: 1.2;
}

.site-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;

  padding-bottom: calc(44px + env(safe-area-inset-bottom));
}

.site-nav__link {
  text-decoration: none;
  color: #111;
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav__link:hover {
  background: #f5f5f5;
}

.site-nav--desktop {
  display: none;
  gap: 8px;
}

.site-nav--mobile {
  display: block;
}

.site-nav--mobile {
  position: relative;
}

.hamburger-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn__icon {
  font-size: 20px;
  line-height: 1;
}

.mobile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);

  width: 180px;
  padding: 8px;

  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;

  display: grid;
  gap: 6px;

  z-index: 1001;
}

.mobile-menu__link {
  text-decoration: none;
  color: #111;
  padding: 10px 10px;
  border-radius: 10px;
}

.mobile-menu__link:hover {
  background: #f5f5f5;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 1000;
}

.mobile-menu[hidden],
.mobile-menu-backdrop[hidden] {
  display: none !important;
}

/* hamburger */
.hamburger {
  list-style: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
}

.hamburger::-webkit-details-marker {
  display: none;
}

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 4px 0;
}

.drawer {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  display: grid;
  gap: 6px;
}

.drawer__link {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: var(--fs-md);
}

.drawer__link:hover {
  background: #f5f5f5;
}

@media (min-width: 768px) {
  .site-nav--desktop { display: flex; }
  .site-nav--mobile  { display: none; }

  .hero__actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
}

.hero__title {
  margin: 0;
  font-size: 24px;
}

.hero__lead {
  margin: 10px 0 0;
  color: #444;
}

.hero__actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  text-decoration: none;
  border: 1px solid #ddd;
  color: #111;
  background: #fff;
  font-size: var(--fs-lg);
  line-height: 1.1;
  box-sizing: border-box;
}

.btn--sm {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  min-height: 36px;
}

.btn--block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.btn--primary {
  border-color: #111;
  background: #111;
  color: #fff;
}

.btn--ghost:hover {
  background: #f5f5f5;
}

.search-retry {
  padding: 8px 12px;
  font-size: var(--fs-md);
  border-radius: 10px;
}

.search-filters {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.search-filters__summary {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}

.search-filters__summary::-webkit-details-marker {
  display: none;
}

.search-filters__body {
  padding: 0 12px 12px;
  display: grid;
  gap: 8px;
}

.search-filters__option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.search-filters__option--stack {
  display: grid;
  gap: 6px;
  align-items: stretch;
}

.search-filters__select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 14px;
  background: #fff;
}

.search-filters__count {
  margin-left: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.search-filters__actions {
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
}

/* --- トイレ一覧 --- */
#toilet-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;

  max-height: 40vh;
  overflow: auto;
  padding-right: 2px;
}

.toilet-card {
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
}

.toilet-card:hover {
  background: #f7f7f7;
}

.toilet-card.is-selected {
  background: #f2f6ff;
  border-color: #b7ccff;
}

.toilet-card__title {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.toilet-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.toilet-card__name {
  font-weight: 600;
}

.toilet-card__icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toilet-card__detail {
  border: none;
  background: transparent;
  border-radius: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  line-height: 32px;
  font-size: 22px;
  opacity: 0.7;
}

.toilet-card__detail:hover {
  opacity: 1;
}

.toilet-card__detail:active {
  transform: translateY(1px);
}

.facility-icon {
  font-size: 18px;
  line-height: 1;
}

body.is-modal-open {
  overflow: hidden;
}

.toilet-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
}

.toilet-modal.is-open {
  display: block;
}

.toilet-modal__backdrop {
  display: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 0;
}

body.is-modal-open .toilet-modal__backdrop {
  display: block;
  pointer-events: auto;
}

.toilet-modal__panel {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(92vw, 520px);
  max-height: calc(100vh - 24px);
  overflow: auto;

  background: #fff;
  border-radius: 12px;
  padding: 16px;
  z-index: 1;
}

.toilet-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;

  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.toilet-modal__close:hover {
  opacity: 0.6;
}

.toilet-modal__body {
  display: grid;
  gap: 10px;
}

.toilet-modal__sub {
  font-size: 12px;
  opacity: 0.75;
}

.toilet-modal__title {
  font-size: 18px;
  font-weight: 700;
}

.toilet-modal__titleRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 40px;
}


.toilet-modal__fav,
.toilet-modal__favHint {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.toilet-modal__fav:hover,
.toilet-modal__favHint:hover {
  opacity: 0.7;
}

.toilet-modal__photoPlaceholder {
  height: 160px;
  border-radius: 12px;
  background: #f1f1f1;
  display: grid;
  place-items: center;
  color: #666;
}

.toilet-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.toilet-modal__cell {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 8px 6px;
  background: #fff;

  display: grid;
  gap: 6px;
  align-content: start;
}

.toilet-modal__cellLabel {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;

  word-break: keep-all;
}

.toilet-modal__cellDivider {
  height: 1px;
  background: #e5e5e5;
}

.toilet-modal__cellValue {
  text-align: center;
  font-size: 16px; /* 18 → 16 */
  font-weight: 700;
  line-height: 1;
  min-height: 16px;
}

.toilet-modal__cellValue--text {
  font-size: 16px;
  font-weight: 700;
}

.toilet-modal__sectionTitle {
  font-weight: 700;
  font-size: 13px;
}

.toilet-modal__placeholder {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 16px;
  color: #666;
}

.toilet-modal__route {
  width: 100%;
  margin-top: 6px;
}

.search-status {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  display: none;
}

.search-status.is-show {
  display: block;
}

.search-status.is-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-status__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-top-color: #111;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.search-status.is-error {
  border-color: #ffd6d6;
  background: #fff5f5;
}

.search-status.is-empty {
  border-color: #eee;
  background: #fafafa;
}

.search-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.search-debug {
  margin: 0;
  color: #444;
  font-size: 13px;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #eee;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 20;
}

.site-footer__inner {
  max-width: 960px;
  min-width: 0;
  margin: 0 auto;
  padding: var(--footer-pad-y) var(--footer-pad-x);
  padding-bottom: calc(var(--footer-pad-y) + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.site-footer__logo {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: var(--fs-sm);
  white-space: nowrap;
}

.site-footer__nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-end;
}

.site-footer__link {
  flex: 0 0 auto;
  text-decoration: none;
  color: #111;
  padding: 4px 6px;
  border-radius: 8px;
  opacity: 0.75;
  font-size: var(--fs-sm);
  white-space: nowrap;
}

.site-footer__link:hover {
  opacity: 1;
  background: #f5f5f5;
}

.feature {
  margin-top: 24px;
}

.feature__placeholder {
  height: 180px;
  border-radius: 12px;
  background: #e5e5e5;
  display: grid;
  place-items: center;
  color: #666;
}

.cta {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.feature--in-hero {
  margin-top: 14px;
}

.cta--in-hero {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.feature__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #eee;
}

.feature__caption {
  margin: 10px 0 0;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/*モバイル*/
@media (max-width: 480px) {
  .site-footer__inner {
    padding: 8px 12px;
    gap: 10px;
  }

  .site-footer__logo {
    font-size: 12px;
    white-space: nowrap;
  }

  .site-footer__nav {
    flex-wrap: nowrap;       
    overflow-x: auto;        
    -webkit-overflow-scrolling: touch;
    gap: 6px;
  }

  .site-footer__link {
    padding: 3px 4px;
    font-size: 11px;
    white-space: nowrap;     
  }
}

.site-nav__logout-btn,
.mobile-menu__logout-btn {
  background: none;
  border: 0;
  font: inherit;
  color: #111;
  cursor: pointer;
}

.site-nav__logout-btn {
  padding: 8px 10px;
  border-radius: 8px;
}

.mobile-menu__logout-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border-radius: 10px;
}

.site-nav__logout-btn:hover,
.mobile-menu__logout-btn:hover {
  background: #f5f5f5;
}

.site-nav__logout-form,
.mobile-menu__logout-form {
  margin: 0;
}

.site-nav__link--disabled,
.mobile-menu__link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* --- Favorites --- */
.favorites-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.favorites-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.favorites-item__open {
  width: 100%;
}

.favorites-item__sub {
  font-size: var(--fs-sm);
  color: #444;
  opacity: 0.85;
}

.favorites-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.favorites-actions .btn {
  padding: 10px 12px; /* 好みで微調整 */
  font-size: var(--fs-md);
}

.toilet-modal__reviewHeader .reviews-item__badge {
  margin-top: 4px;
}

.toilet-modal__reviewSummary {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.toilet-modal__reviewAverage,
.toilet-modal__reviewCount {
  font-size: 13px;
  color: #444;
}

.toilet-modal__reviewList {
  display: grid;
  gap: 10px;
}

.toilet-modal__reviewItem {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 8px;
}

.toilet-modal__reviewHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.toilet-modal__reviewHeader > div:first-child {
  min-width: 0;
}

.toilet-modal__reviewUser {
  display: inline-block;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  word-break: break-word;
}

.toilet-modal__reviewRating {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.reviews-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.reviews-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  display: grid;
  gap: 8px;
}

.reviews-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.reviews-item__header > div:first-child {
  min-width: 0;
}

.reviews-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  word-break: break-word;
}

.reviews-item__sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  word-break: break-word;
}

.reviews-item__rating {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.reviews-item__comment,
.toilet-modal__reviewComment {
  display: block;
  width: 100%;
  box-sizing: border-box;

  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;

  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;

  margin: 0;

  max-height: 7.2em;
  overflow-y: auto;
}

.toilet-modal__reviewComment--compact {
  white-space: nowrap;
  word-break: normal;
  overflow: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  max-height: none;
}

.reviews-item__comment--empty {
  color: #666;
  font-style: italic;
}

.reviews-item__meta {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.reviews-item__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2px;
}

.reviews-item__actions form {
  margin: 0;
}

.reviews-item__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  box-sizing: border-box;
}

.mypage-menu {
  display: grid;
  gap: 12px;
}

.review-form-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 16px;
}

.review-form-card__title {
  font-weight: 700;
  font-size: 18px;
}

.review-form-card__sub {
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

.review-summary-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.review-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fafafa;
  font-size: 13px;
  color: #444;
}

.review-summary-badge--rating {
  background: #fffdf7;
}

.review-summary-badge--count {
  background: #f8f8f8;
}

.review-summary-badge__label {
  font-weight: 600;
  color: #333;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-stars__visual {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
}

.review-stars__score {
  font-weight: 600;
  color: #111;
}

.reviews-item--own {
  border-color: #d8e7ff;
  background: #fcfdff;
}

.reviews-item__badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2457a6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .review-summary-badges {
    align-items: flex-start;
  }

  .review-summary-badge {
    width: 100%;
    justify-content: flex-start;
  }
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

.form-label__optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.form-help {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}

.form-select,
.form-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}

.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #9bb8ff;
  box-shadow: 0 0 0 3px rgba(155, 184, 255, 0.2);
}

.form-textarea {
  resize: vertical;
  line-height: 1.5;
  min-height: 140px;
}

.review-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.review-form-actions .btn,
.review-form-actions input[type="submit"],
.review-form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-sizing: border-box;
}

.review-form-actions input[type="submit"],
.review-form-actions button {
  border-radius: var(--btn-radius);
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: var(--fs-lg);
  line-height: 1.1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  cursor: pointer;
}

.review-form-actions a.btn {
  text-decoration: none;
}

.form-errors {
  border: 1px solid #ffd6d6;
  background: #fff5f5;
  border-radius: 10px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.form-errors__title {
  margin: 0;
  font-weight: 700;
  color: #b00020;
}

.form-errors__list {
  margin: 0;
  padding-left: 18px;
}

.toilet-modal__reviewActions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.toilet-modal__reviewActions .btn {
  min-height: 36px;
  box-sizing: border-box;
}

.toilet-modal__reviewActionHint {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

.btn--danger {
  background: #e54848;
  color: white;
  border: none;
}

.btn--danger:hover {
  background: #c13c3c;
}

.toilet-reviews-summary {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.toilet-reviews-summary__title {
  font-weight: 700;
  font-size: 18px;
}

.toilet-reviews-summary__sub {
  font-size: 12px;
  color: #666;
}

.toilet-reviews-summary__meta {
  font-size: 13px;
  color: #444;
}

.toilet-reviews-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.empty-state-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.empty-state-card__title {
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.empty-state-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.empty-state-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.empty-state-card__hint {
  font-size: 13px;
  color: #666;
}

.guide-section {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.guide-section__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.guide-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.guide-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.guide-card__text {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.mypage-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  margin-bottom: 16px;
}

.mypage-card__text {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.mypage-menu {
  display: grid;
  gap: 12px;
}

.form-file {
  width: 100%;
  font-size: 14px;
}

.reviews-item__image {
  margin-top: 12px;
}

.reviews-item__thumb {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

.form-note-box {
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background-color: #fafafa;
}

.form-note-box__limit {
  margin: 0 0 4px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #666;
  font-weight: 600;
}

.form-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #666;
}

.form-note + .form-note {
  margin-top: 2px;
}

.form-help-text {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #555;
}

.static-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

.static-page__section + .static-page__section {
  margin-top: 24px;
}

.static-page__section h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.static-page__section p,
.static-page__section li {
  line-height: 1.8;
}

.static-page__section ul {
  padding-left: 20px;
}
