.home-area-picker {
  position: relative;
  min-width: 0;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}
.home-picker-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  color: #78857e;
}
.home-search .home-area-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 500 13px var(--sans);
  text-align: left;
  cursor: pointer;
  user-select: none;
}
.home-search .home-area-trigger i { font-style: normal; font-size: 16px; transition: transform .2s; }
.home-search .home-area-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.home-area-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  width: min(820px, calc(100vw - 40px));
  max-height: min(460px, calc(100vh - 225px));
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid #dcd7ce;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(27,37,33,.18);
}
.home-area-tabs {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: #f4f1ea;
  border-bottom: 1px solid #ded9d0;
}
.home-area-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #65726b;
  font: 500 13px var(--sans);
  cursor: pointer;
}
.home-area-tabs button[aria-selected="true"] { background: #26342f; color: #fff; }
.home-area-pane { padding: 18px 20px 22px; }
.home-area-pane:not(.is-active) { display: none; }
.home-pane-intro { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.home-pane-intro b { font: 500 14px var(--serif); }
.home-pane-intro small { color: #87918c; font-size: 9px; }
.home-area-all {
  width: 100%;
  margin-bottom: 10px;
  padding: 11px 13px;
  border: 1px solid #d8d3ca;
  border-radius: 7px;
  background: #faf9f6;
  color: #26342f;
  text-align: left;
  cursor: pointer;
}
.home-prefecture-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.home-prefecture-list button,
.home-airport-choices button {
  display: grid;
  grid-template-columns: 26px minmax(0,1fr) auto;
  gap: 7px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e5e0d8;
  border-radius: 7px;
  background: #fff;
  color: #26342f;
  text-align: left;
  cursor: pointer;
}
.home-prefecture-list button:hover,
.home-airport-choices button:hover,
.home-area-all:hover { background: #edf1ed; }
.home-prefecture-list i { color: #9a654b; font: normal 600 9px var(--sans); }
.home-prefecture-list span,
.home-airport-choices span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
.home-prefecture-list small,
.home-airport-choices small { color: #849087; font-size: 8px; }
.home-airport-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.home-airport-choices button { grid-template-columns: 38px minmax(0,1fr) auto; }
.home-airport-choices b { color: #8a5d47; font-size: 10px; letter-spacing: .08em; }
.home-area-picker.is-selected .home-area-trigger { color: #8a5d47; }
@media (max-width: 800px) {
  .home-area-picker { padding: 16px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-area-panel { position: fixed; top: auto; bottom: 12px; left: 12px; right: 12px; width: auto; max-height: 76vh; }
  .home-prefecture-list { grid-template-columns: repeat(2, 1fr); }
  .home-airport-choices { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .home-pane-intro { display: block; }
  .home-pane-intro small { display: block; margin-top: 4px; }
  .home-prefecture-list { grid-template-columns: 1fr; }
}
