:root {
  --yellow: #fff226;
  --cyan: #00d8cc;
  --green: #9ccd41;
  --mint: #73d5d3;
  --ink: #111;
  --paper: #f6f6f1;
  --line: #111;
  --content: 1400px;
  --radius: 15px;
}

.listing-card-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: #fff;
}

.hero-photo-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  font-weight: 900;
  cursor: default;
}

.hero-photo-empty::after {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}

button,
input {
  font: inherit;
}

a:hover,
button:hover {
  opacity: .72;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 68px;
  background: #fff;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(var(--content), calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
}

.site-logo img {
  width: 220px;
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button,
.solid-link,
.news-band > a,
.footer-search button {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.header-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 142px;
  min-height: 34px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.header-sns a img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.menu-button {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 76px;
  height: 36px;
  padding: 0;
  border: 2px dotted var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
  cursor: pointer;
}

.menu-button img {
  display: none;
}

.menu-button::before {
  content: "";
  width: 22px;
  height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 6px / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 12px / 100% 2px no-repeat;
}

.menu-button.is-open::before {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px), var(--ink) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px), var(--ink) calc(50% + 1px), transparent calc(50% + 1px));
}

.drawer {
  position: fixed;
  z-index: 28;
  top: 0;
  right: 0;
  left: 0;
  max-height: 100vh;
  overflow-y: auto;
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-105%);
  transition: transform .38s ease, box-shadow .38s ease;
}

.drawer[hidden] {
  display: none;
}

.drawer.is-open {
  transform: translateY(0);
  box-shadow: 0 100vh 0 100vh rgb(0 0 0 / .56);
}

.drawer-inner {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 14px 0 60px;
  overflow-x: hidden;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.drawer-logo img {
  width: 220px;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 76px;
  height: 36px;
  border: 2px dotted var(--ink);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.drawer-footer-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: start;
}

.drawer .footer-nav {
  grid-template-columns: 230px 180px minmax(350px, 1fr);
}

.drawer .footer-nav-group {
  padding: 0 18px;
}

.drawer .footer-nav-group a {
  font-size: 18px;
}

.drawer .footer-nav-group a:first-of-type {
  font-size: 24px;
}

.drawer .footer-buy-owner {
  border-left: 2px dotted var(--ink);
}

.drawer .footer-buy-owner .footer-nav-group {
  min-height: 56px;
  padding: 0 18px;
}

.drawer .footer-sns {
  justify-self: end;
  width: min(150px, 100%);
  margin-right: 24px;
}

.drawer .footer-sns a {
  width: 100%;
}

.drawer-new {
  position: relative;
  margin: 108px 0 0;
  padding: 40px 46px 40px;
  border-radius: var(--radius);
  background: #fff;
}

.drawer-new-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: -98px -4px 28px 0;
}

.drawer-new-head h2 {
  margin: 0;
  padding: 18px 26px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.drawer-new-head p {
  margin: 0;
  font-size: 18px;
}

.drawer-new-head strong {
  font-size: 42px;
  line-height: .85;
}

.drawer-new-slider {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 22px;
  margin: 0 -72px;
}

.drawer-new-slider > button {
  width: 46px;
  height: 46px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
}

.drawer-new-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.drawer-new-card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 72px) / 4);
  font-size: 15px;
}

.drawer-new-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 10px;
}

.drawer-new-card .badge {
  position: absolute;
  right: 12px;
  top: 178px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border: 2px dotted var(--ink);
  background: var(--mint);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.drawer-new-card .badge::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.drawer-new-card strong,
.drawer-new-card p {
  display: block;
  margin: 8px 0 0;
}

.drawer-new-card strong {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.drawer-new-card p {
  min-height: 3.2em;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.drawer-new-card dl {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

.drawer-new-card dl div {
  display: flex;
  gap: 8px;
  padding: 4px 0 5px;
  border-bottom: 2px dotted var(--ink);
}

.drawer-new-card dt,
.drawer-new-card dd {
  margin: 0;
}

.drawer-new-card dt {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  padding: 100px 0 110px;
  --top-area-color: var(--mint);
  --top-area-corner: url("../img/top/mv_kado.png");
  background: var(--top-area-color);
  transition: background-color .25s ease, background .25s ease;
}

.hero[data-area-corner="0"] {
  --top-area-corner: url("../img/top/mv_kado.png");
}

.hero[data-area-corner="1"] {
  --top-area-corner: url("../img/top/mv_kado1.png");
}

.hero[data-area-corner="2"] {
  --top-area-corner: url("../img/top/mv_kado2.png");
}

.hero[data-area-corner="3"] {
  --top-area-corner: url("../img/top/mv_kado3.png");
}

.hero[data-area-corner="4"] {
  --top-area-corner: url("../img/top/mv_kado4.png");
}

.hero[data-area-corner="5"] {
  --top-area-corner: url("../img/top/mv_kado5.png");
}

.hero[data-area-corner="6"] {
  --top-area-corner: url("../img/top/mv_kado6.png");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 518px;
  gap: 14px;
  width: min(var(--content), calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
}

.hero-main {
  min-width: 0;
}

.hero-photo {
  position: relative;
  overflow: visible;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: #cddcd0;
  height: 705px;
  cursor: pointer;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity .25s ease;
}

.hero-photo.is-changing img {
  opacity: .2;
}

.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -14px;
  bottom: -76px;
  width: 299px;
  height: 211px;
  background: var(--top-area-corner) right bottom / contain no-repeat;
  pointer-events: none;
}

.hero-pin {
  position: absolute;
  top: 64px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 156px;
  margin: 0;
  padding: 14px 20px;
  border: 3px solid var(--ink);
  border-right-color: var(--top-area-color);
  border-radius: 999px 0 0 999px;
  background: var(--top-area-color);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.hero-number {
  position: absolute;
  left: 26px;
  bottom: 225px;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
}

.hero-number span {
  margin-right: 8px;
  font-size: 28px;
}

.hero-tags {
  position: absolute;
  z-index: 2;
  left: -4px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  max-width: calc(100% - 48px);
}

.hero-tags span {
  width: fit-content;
  max-width: 100%;
  padding: 8px 26px 9px;
  border: 3px solid var(--ink);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--top-area-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 132px;
  bottom: 18px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.hero-count {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 12px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.hero-dots {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
}

.hero-dots button {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  padding: 0;
}

.hero-dots .is-active {
  background: var(--ink);
}

.pickup-label {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: -34px;
  width: 116px;
  margin: 0;
  padding: 9px 18px 11px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.hero-side {
  position: relative;
  align-self: start;
  display: grid;
  grid-template-columns: 282px 1fr;
  grid-template-areas:
    "heading entry"
    "list list";
  min-height: 650px;
  padding-top: 0;
}

.hero-side::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: -10px;
  width: 100%;
  height: 566px;
  background: url("../img/common/back.webp") top right / 100% 100% no-repeat;
  pointer-events: none;
}

.entry-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  min-height: 44px;
  padding: 6px 16px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.entry-pill strong {
  margin-left: 6px;
  font-size: 34px;
  line-height: .8;
}

.side-card {
  display: contents;
}

.side-heading-block {
  position: relative;
  z-index: 2;
  grid-area: heading;
  min-height: 145px;
  padding: 26px 18px 0 33px;
  background: transparent;
}

.entry-block {
  position: relative;
  z-index: 3;
  grid-area: entry;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 128px;
  padding-top: 0;
  background: transparent;
}

.side-list,
.mini-property,
.recommend-tags {
  position: relative;
  z-index: 2;
}

.side-list {
  grid-area: list;
  margin-top: -77px;
  padding: 42px 18px 0 33px;
}

.side-heading-block h1,
.side-heading-block p {
  margin: 0;
}

.side-heading-block h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.side-heading-block p {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.mini-property {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  margin-bottom: 22px;
  padding: 10px 12px 12px 9px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #fff;
}

.mini-property img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.mini-property p,
.mini-property h2,
.mini-property span {
  margin: 0;
}

.mini-property p,
.mini-property span {
  font-size: 14px;
  line-height: 1.2;
}

.mini-property h2 {
  margin: 2px 0 8px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.mini-pin {
  position: absolute;
  top: -20px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 130px;
  padding: 6px 12px;
  border: 2px dotted var(--ink);
  border-radius: var(--radius);
  background: var(--top-area-color, var(--mint));
  text-align: center;
}

.area-list button.is-active {
  background: var(--top-area-color, var(--mint));
}

.mini-pin::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.recommend-tags {
  margin: 36px -18px 0;
  padding: 16px 18px 18px;
  border: 2px dotted var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  font-size: 14px;
}

.recommend-tags p {
  margin: 0 0 8px;
  font-weight: 900;
}

.hero-pin::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.recommend-tags a {
  display: inline-block;
  margin-right: 12px;
  line-height: 1.8;
}

.area-tab {
  position: fixed;
  z-index: 31;
  right: -10px;
  top: 176px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 155px;
  border: 0;
  border-radius: 0;
  background: url("../img/common/tab.png") center / 100% 100% no-repeat;
  padding: 0;
  cursor: pointer;
  transition: right .28s ease, opacity .2s ease;
}

.area-tab:hover {
  opacity: 1;
}

.area-tab span {
  display: block;
  writing-mode: vertical-rl;
  transform: translate(-5px, -15px) rotate(180deg);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.area-tab.is-open {
  right: calc(min(560px, calc(100vw - 76px)) - 11px);
}

.area-panel {
  position: fixed;
  z-index: 30;
  top: 176px;
  right: 0;
  width: min(560px, calc(100vw - 76px));
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  padding: 22px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .18);
  transform: translateX(100%);
  opacity: 1;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}

.area-panel[hidden] {
  display: block;
}

.area-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.area-note {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}

.area-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.area-list button::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.pickup-strip {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 20px 0 22px;
  background: #fff;
}

.pickup-row {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 20px;
}

.pickup-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: pickup-marquee 32s linear infinite;
}

.pickup-row-reverse .pickup-track {
  animation-direction: reverse;
}

.pickup-strip:hover .pickup-track {
  animation-play-state: paused;
}

.pickup-card {
  position: relative;
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 10px;
  width: 330px;
  min-height: 123px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.pickup-card img {
  width: 106px;
  height: 103px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.pickup-card p,
.pickup-card span {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.pickup-card p:not(.pickup-pin) {
  display: -webkit-box;
  min-height: 4.05em;
  margin: 9px 0 0;
  padding-bottom: 5px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  border-bottom: 3px solid var(--ink);
  font-weight: 900;
}

.pickup-card strong {
  display: block;
  margin: 0 0 2px;
}

.pickup-card span {
  font-weight: 900;
  transform: translateY(-3px);
}

.pickup-pin {
  position: absolute;
  top: -17px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 128px;
  padding: 4px 11px;
  border: 2px dotted var(--ink);
  border-radius: var(--radius);
  background: var(--mint);
  text-align: center;
}

.pickup-pin::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.badge {
  display: inline-block;
  background: var(--cyan);
  padding: 2px 7px;
  border-radius: var(--radius);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  line-height: 1;
}

@keyframes pickup-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.news-band {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 42px;
  align-items: center;
  gap: 26px;
  width: min(1200px, calc(100% - 120px));
  min-height: 70px;
  margin: 0 auto 15px;
  padding: 10px 14px 10px 32px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.news-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 64%;
  left: 50%;
  width: 100vw;
  height: calc(36% + 19px);
  background: var(--yellow);
  transform: translateX(-50%);
}

.news-band::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 3px solid var(--ink);
  border-radius: inherit;
  background: #fff;
  pointer-events: none;
}

.news-band h2,
.news-band p {
  position: relative;
  z-index: 2;
  margin: 0;
}

.news-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.news-band p {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-band time {
  flex: 0 0 auto;
  margin-right: 0;
  font-weight: 900;
}

.news-category {
  flex: 0 0 auto;
  display: inline-block;
  padding: 4px 11px 5px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.news-text {
  min-width: 0;
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
}

.news-band > a {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: none;
}

.news-band > a::before {
  content: "";
  width: 10px;
  height: 8px;
  background: url("../img/common/w_arrow.webp") center / contain no-repeat;
}

.special {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.special-track {
  display: contents;
}

.special-link {
  position: relative;
  display: block;
  min-width: 0;
  background: var(--yellow);
  overflow: visible;
}

.special-link img {
  width: 100%;
  height: 100%;
  aspect-ratio: 801 / 742;
  object-fit: cover;
  transition: opacity .25s ease, transform .35s ease;
}

.special-link:hover img {
  opacity: .76;
  transform: scale(1.035);
}

.special-link span {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -8px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 41px;
  background: url("../img/top/read_more_back.png") bottom / contain no-repeat;
  transform: translateX(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.feature-list,
.properties {
  width: 100%;
  margin: 0;
  padding: 54px 28px;
  background: #fff;
}

.feature-list {
  padding: 36px min(110px, 7vw) 44px;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}

.feature-intro {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin: 0 0 22px;
}

.feature-intro h2 {
  min-width: 125px;
  margin: 0;
  padding-right: 34px;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: .95;
}

.feature-intro p {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-heading p,
.section-heading h2 {
  margin: 0;
}

.section-heading p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

.section-heading h2 {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: #fff;
}

.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 158px;
  border-bottom: 3px solid var(--ink);
  transition: opacity .2s ease, background-color .2s ease;
}

.feature-item:hover {
  background: rgb(115 213 211 / .18);
}

.feature-item:nth-child(odd) {
  border-right: 3px solid var(--ink);
}

.feature-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.feature-no {
  display: grid;
  place-items: center;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
}

.feature-body {
  padding: 22px 170px 16px 16px;
}

.feature-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 16px 6px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  line-height: 1;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.feature-tags {
  margin: 0;
  font-size: 12px;
}

.feature-item img {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 2px solid var(--ink);
  transform: translateY(-50%);
  transition: transform .25s ease, opacity .25s ease;
}

.feature-item:hover img {
  opacity: .78;
  transform: translateY(-50%) scale(1.06);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
}

.property-card {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 10px;
  min-height: 0;
  aspect-ratio: 247 / 400;
  background: #ddd;
  transition: opacity .2s ease;
}

.property-card-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.property-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: url("../img/common/btn_search.webp") center / contain no-repeat;
  pointer-events: none;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.property-card:hover img {
  opacity: .82;
  transform: scale(1.06);
}

.property-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / .72) 100%);
  pointer-events: none;
}

.property-card-body {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 22px;
  left: 18px;
  color: #fff;
}

.property-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 12px;
  padding: 5px 11px 6px;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.property-card .badge::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.property-card h3,
.property-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.property-card h3 {
  margin-bottom: 2px;
  font-weight: 900;
}

.property-card p {
  font-size: 16px;
  font-weight: 900;
}

.movie-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / .76);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.movie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.movie-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(240px, 390px);
  gap: 28px;
  align-items: center;
  width: min(860px, 90vw);
  padding: 0;
  color: #fff;
  background: transparent;
  transform: translateY(12px);
  transition: transform .24s ease, opacity .24s ease;
}

.movie-modal.is-open .movie-modal-panel {
  transform: translateY(0);
}

.movie-modal-panel.slide-next {
  animation: movieSlideNext .34s ease;
}

.movie-modal-panel.slide-prev {
  animation: movieSlidePrev .34s ease;
}

.movie-modal-close {
  position: fixed;
  z-index: 3;
  top: max(38px, calc(50vh - 332px));
  right: max(26px, calc((100vw - 860px) / 2));
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
}

.movie-modal-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #ddd;
}

.movie-modal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.movie-modal-frame:hover img {
  opacity: .86;
  transform: scale(1.045);
}

.movie-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.movie-play::before {
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgb(255 255 255 / .9);
}

.movie-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid var(--ink);
  transform: translateX(3px);
}

.movie-modal-text p,
.movie-modal-text h2 {
  margin: 0;
}

.movie-modal-text p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}

.movie-modal-text h2 {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.movie-modal-text dl {
  margin: 0 0 26px;
}

.movie-modal-text dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgb(255 255 255 / .7);
}

.movie-modal-text dt,
.movie-modal-text dd {
  margin: 0;
}

.movie-modal-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 18px 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.movie-modal-nav {
  position: fixed;
  z-index: 4;
  left: calc(50% - 224px);
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
}

.movie-modal-prev {
  top: max(12px, calc(50% - 407px));
}

.movie-modal-next {
  top: min(calc(100% - 54px), calc(50% + 363px));
}

@keyframes movieSlideNext {
  from {
    opacity: .15;
    transform: translateY(62px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes movieSlidePrev {
  from {
    opacity: .15;
    transform: translateY(-62px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 28px 24px 32px;
  background: var(--yellow);
  border-top: 3px solid var(--ink);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 150px;
  gap: 20px;
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 22px;
  overflow: visible;
}

.footer-actions {
  position: absolute;
  top: -54px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.footer-actions a,
.footer-actions button {
  display: grid;
  place-items: center;
  min-width: 50px;
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.footer-actions button,
.footer-actions a[aria-label] {
  min-width: 30px;
  width: 30px;
  padding: 0;
}

.footer-lead {
  padding-top: 12px;
  text-align: left;
}

.footer-lead p {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.footer-lead p::before,
.footer-lead p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  border-top: 2px solid var(--ink);
}

.footer-lead p::before {
  left: 0;
  transform: rotate(58deg);
}

.footer-lead p::after {
  right: 0;
  transform: rotate(-58deg);
}

.footer-lead strong {
  display: inline;
  background: transparent;
  font-size: 34px;
  line-height: 1.28;
  font-weight: 900;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.footer-nav {
  display: grid;
  grid-template-columns: 230px 180px minmax(350px, 1fr);
  min-width: 0;
}

.footer-nav-group {
  min-height: 154px;
  padding: 0 18px;
  border-left: 2px dotted var(--ink);
}

.footer-nav-group:first-child {
  border-left: 0;
  padding-left: 12px;
}

.footer-nav > .footer-nav-group:nth-child(2) {
  padding-left: 18px;
}

.footer-nav-group p {
  margin: 0 0 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.footer-nav-group a {
  display: block;
  margin: 0 0 11px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.footer-nav-group a:first-of-type {
  font-size: 24px;
}

.site-footer .footer-nav-group a:first-of-type::before,
.site-footer .footer-bottom-links a::before {
  content: "›";
  display: inline-block;
  margin-right: 2px;
  font-size: .85em;
  line-height: 1;
}

.footer-buy-owner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  border-left: 2px dotted var(--ink);
}

.footer-buy-owner .footer-nav-group {
  min-height: 56px;
  padding: 0 18px;
}

.footer-buy-owner .footer-nav-group:first-child {
  border-left: 0;
}

.footer-search {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 0 18px;
}

.footer-search select,
.footer-search input {
  width: 100%;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.footer-search select {
  padding: 0 44px 0 14px;
  appearance: none;
  background: #fff url("../img/common/arrow_select.webp") right 14px center / 12px auto no-repeat;
}

.footer-keyword {
  display: grid;
  grid-template-columns: 1fr 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.footer-keyword input {
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.footer-keyword button {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 2px solid var(--ink);
  border-radius: 0 999px 999px 0;
  background: url("../img/common/btn_search.webp") center / 31px 31px no-repeat;
  box-shadow: none;
}

.footer-sns {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-sns a {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 73px;
  border: 2px dotted var(--ink);
  border-radius: 8px;
  background: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  min-width: 0;
  width: 160px;
  max-width: 100%;
  white-space: nowrap;
}

.footer-sns img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.footer-bottom-links {
  grid-column: 2 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 54px;
  margin-top: 24px;
}

.footer-bottom-links a {
  font-size: 17px;
  font-weight: 900;
}

.page-top {
  position: fixed;
  z-index: 15;
  right: 18px;
  bottom: 18px;
  width: 46px;
}

.about-page .site-header {
  position: relative;
}

.about-main {
  background: #fff;
}

.about-yellow {
  padding: 42px 0 0;
  background: linear-gradient(var(--yellow) 0 360px, #fff 360px);
}

.about-news {
  width: min(1120px, calc(100% - 180px));
  margin-bottom: 38px;
}

.about-frame {
  width: min(1120px, calc(100% - 180px));
  margin: 0 auto;
}

.about-tabs {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 -3px;
  padding: 0;
}

.about-tab {
  position: relative;
  min-width: 238px;
  height: 56px;
  min-height: 56px;
  padding: 16px 24px 12px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: height 0.22s ease, min-height 0.22s ease, padding 0.22s ease;
}

#tab-lab {
  width: 226px;
  min-width: 226px;
}

#tab-school {
  width: 286px;
  min-width: 286px;
}

#tab-contest {
  width: 320px;
  min-width: 320px;
}

.about-tab:hover {
  opacity: 1;
}

.about-tab span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.about-tab.is-active {
  height: 82px;
  min-height: 82px;
  margin-right: 0;
  padding: 20px 24px 18px;
  border: 0;
  border-radius: 0;
  background: url("../img/common/about-tab2.png") left bottom / 100% 100% no-repeat;
  font-size: 23px;
  text-align: left;
  z-index: 2;
}

.about-tab.is-active::after {
  display: none;
}

.about-tab.is-active span {
  font-size: 16px;
  white-space: nowrap;
}

.about-tab:not(.is-active) {
  overflow: hidden;
}

.about-tab:not(.is-active):hover {
  height: 82px;
  min-height: 82px;
  padding-top: 20px;
}

.about-tab:not(.is-active) span {
  display: none;
}

.about-panel {
  border: 3px solid var(--ink);
  border-radius: 0 18px 18px 18px;
  background: #fff;
  padding: 70px 120px 76px;
}

.about-panel[hidden] {
  display: none;
}

.about-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-copy h1 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.65;
  font-weight: 900;
}

.about-removie {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 76px;
  font-weight: 900;
  line-height: .85;
}

.about-removie-sub {
  margin: 12px 0 30px;
  font-size: 18px;
  line-height: 1.55;
}

.about-lead {
  position: relative;
  margin: 0 auto 40px;
  max-width: 690px;
  font-size: 14px;
  line-height: 2.05;
}

.about-lead::before,
.about-lead::after {
  content: "“";
  position: absolute;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.about-lead::before {
  top: -22px;
  left: -48px;
}

.about-lead::after {
  content: "”";
  right: -42px;
  bottom: -34px;
}

.about-copy h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.55;
  font-weight: 900;
}

.promise-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 30px;
  margin: 72px auto 60px;
  max-width: 880px;
}

.promise-block > h2 {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.35;
}

.promise-list {
  display: grid;
  gap: 28px;
}

.promise-list article h3,
.about-list-section > h2,
.contest-text h2,
.faq h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin: 0 0 18px;
  padding: 8px 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.promise-list article h3 span,
.image-list h3 span,
.benefit-list h3 span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.promise-list article p {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.9;
}

.flat-match {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.flat-match h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.38;
}

.flat-match p {
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.9;
}

.move-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 28px 0;
}

.move-circles div {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 3px dotted var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.move-circles strong {
  font-size: 64px;
  line-height: .9;
}

.move-circles span {
  font-size: 12px;
  line-height: 1.25;
}

.move-circles b {
  font-size: 26px;
}

.flat-match h3 {
  margin: 28px 0 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}

.member-grid article {
  display: grid;
  grid-template-columns: 42px 84px 1fr;
  align-content: start;
  min-height: 212px;
  padding: 18px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.member-grid article:nth-child(3n) {
  border-right: 0;
}

.member-grid article:nth-last-child(-n+1) {
  border-bottom: 0;
}

.member-grid article > span {
  grid-row: 1 / 4;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.member-photo {
  grid-row: 1 / 3;
  width: 76px;
  height: 76px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.member-grid h3,
.member-grid p,
.member-grid small {
  margin: 0;
}

.member-grid h3 {
  align-self: end;
  font-size: 15px;
}

.member-grid p {
  font-size: 11px;
}

.member-grid small {
  grid-column: 2 / 4;
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.75;
}

.school-intro,
.contest-hero {
  max-width: 710px;
  margin: 0 auto 58px;
}

.school-intro h1,
.about-list-section > h2,
.contest-text h2,
.faq h2 {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
}

.school-lead {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  align-items: center;
}

.modoki-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: .78;
}

.modoki-logo strong {
  font-size: 160px;
  font-weight: 900;
}

.modoki-logo span {
  font-size: 34px;
  font-weight: 900;
}

.school-lead p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.about-list-section {
  max-width: 800px;
  margin: 0 auto 52px;
}

.about-page .about-list-section > h2 {
  max-width: 100%;
  min-height: 72px;
  margin-bottom: 42px;
  padding: 12px 38px;
  font-size: 32px;
}

.about-page .contest-text h2,
.about-page .faq h2 {
  max-width: 800px;
  min-height: 72px;
  margin-bottom: 42px;
  padding: 12px 38px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 32px;
  line-height: 1.25;
  position: relative;
}

.about-list-section > h2 em,
.contest-text h2 em {
  position: absolute;
  right: 28px;
  bottom: auto;
  top: -30px;
  min-width: 132px;
  padding: 10px 16px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 20px;
  font-style: normal;
  text-align: center;
}

.contest-text h2 em {
  right: 28px;
  bottom: auto;
  top: -30px;
  min-width: 132px;
  padding: 10px 16px 12px;
  font-size: 20px;
}

.about-list-section > h2 em::after,
.contest-text h2 em::after {
  content: "";
  position: absolute;
  right: 35px;
  bottom: -13px;
  width: 18px;
  height: 15px;
  background: #fff;
  border-right: 3px solid var(--ink);
  border-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 92%);
  transform: skewX(-38deg) rotate(12deg);
  transform-origin: top right;
}

.contest-text h2 em::after {
  right: 35px;
  bottom: -13px;
  width: 18px;
  height: 15px;
}

.image-list {
  display: grid;
  gap: 28px;
}

.image-list article {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 20px;
  align-items: start;
}

.image-list h3,
.benefit-list h3,
.merit-list h3 {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 56px;
  margin: 0 0 16px;
  padding: 0 18px 0 0;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.image-list h3 span,
.benefit-list h3 span {
  align-self: stretch;
  width: 58px;
  min-width: 58px;
  height: auto;
  margin-right: 18px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 0;
  font-size: 26px;
}

.image-list p,
.benefit-list p,
.merit-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.image-list figure,
.benefit-images figure,
.about-column-grid figure {
  position: relative;
  margin: 0;
  min-height: 150px;
  border: 2px solid var(--ink);
}

.image-list figure::after,
.benefit-images figure::after,
.about-column-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent calc(50% - 1px), var(--ink), transparent calc(50% + 1px));
}

.benefit-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
}

.benefit-images {
  display: grid;
  gap: 36px;
  padding-top: 6px;
}

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

.about-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 54px;
}

.about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 330px;
  min-height: 86px;
  padding: 16px 42px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.about-actions a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contest-hero {
  text-align: center;
}

.contest-hero h1 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.35;
}

.abc-logo {
  margin: 0 auto 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 92px;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -2px;
}

.contest-hero p,
.contest-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.contest-text {
  max-width: 760px;
  margin: 0 auto 48px;
}

.contest-text p + p {
  margin-top: 18px;
}

.contest-text h3 {
  margin: 28px 0 12px;
  padding: 9px 16px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  font-size: 16px;
}

.contest-text ul {
  margin: 0;
  padding: 0 0 0 1.25em;
  font-size: 14px;
  line-height: 1.9;
}

.merit-list {
  display: grid;
  gap: 22px;
}

.merit-list h3 span {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  margin: -4px 24px -4px -13px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
}

.merit-list h3 {
  gap: 0;
}

.flow-chart {
  display: block;
  max-width: 700px;
  margin: 34px auto 58px;
}

.flow-chart img {
  display: block;
  width: 100%;
  height: auto;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq dl {
  margin: 0;
}

.faq dl div {
  padding: 18px 0;
  border-bottom: 1px solid #cfcfcf;
}

.faq dt,
.faq dd {
  margin: 0;
}

.faq dt {
  font-size: 26px;
  font-weight: 900;
}

.faq dd {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.8;
}

.about-column {
  width: min(1120px, calc(100% - 180px));
  margin: 38px auto 64px;
}

.about-column-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 18px;
}

.about-column-intro h2 {
  min-width: 110px;
  margin: 0;
  padding-right: 28px;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: .98;
}

.about-column-intro p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.about-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 3px solid var(--ink);
}

.about-column-grid a {
  display: grid;
  grid-template-columns: 86px 1fr 160px;
  gap: 16px;
  align-items: center;
  min-height: 124px;
  padding: 14px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.about-column-grid a:nth-child(2n) {
  border-right: 0;
}

.about-column-grid a:nth-last-child(-n+2) {
  border-bottom: 0;
}

.about-column-grid span {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -14px 0 -14px -14px;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.about-column-grid span::after {
  content: none;
}

.about-column-grid p,
.about-column-grid h3,
.about-column-grid small {
  margin: 0;
}

.about-column-grid p {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  line-height: 1;
}

.about-column-grid h3 {
  margin: 7px 0 6px;
  font-size: 14px;
  line-height: 1.35;
}

.about-column-grid small {
  font-size: 10px;
}

.about-column-grid figure {
  min-height: 90px;
}

.listing-page {
  --area-color: var(--yellow);
  --filter-button-bg: var(--ink);
}

.listing-page[data-area="miyazaki"] {
  --area-color: var(--mint);
  --filter-button-bg: var(--ink);
}

.listing-page .site-header {
  position: relative;
}

.listing-main {
  background: #fff;
}

.listing-hero {
  padding: 40px 0 74px;
  background: linear-gradient(var(--area-color) 0 360px, #fff 360px);
  transition: background .25s ease;
}

.listing-shell {
  width: min(1400px, calc(100% - 160px));
  margin: 0 auto;
}

.listing-brand {
  position: relative;
  z-index: 3;
  display: inline-grid;
  width: 224px;
  min-width: 224px;
  min-height: 82px;
  align-content: center;
  padding: 0 24px;
  border: 0;
  background: url("../img/common/about-tab2.png") left bottom / 100% 100% no-repeat;
  line-height: 1;
}

.listing-brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.listing-brand span {
  font-size: 19px;
  font-weight: 900;
}

.listing-tabs {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 28px;
  transform: translateY(-16px);
}

.listing-tabs a,
.listing-tabs button {
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 39px;
  padding: 8px 20px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.listing-tabs .is-active,
.listing-tabs button:not([hidden]) + button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.listing-tabs [hidden] {
  display: none;
}

.listing-frame {
  position: relative;
  display: block;
  width: 90%;
  margin-top: -3px;
  border: 3px solid var(--ink);
  border-radius: 0 0 14px 14px;
  background: #fff;
}

.listing-content {
  min-width: 0;
  padding: 62px 200px 58px 30px;
}

.listing-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.listing-title-row h1 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.listing-title-row h1 small {
  font-size: 17px;
  font-weight: 900;
}

.listing-title-row h1 strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  line-height: .8;
}

.map-note {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 18px 0 25px 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: #fff;
}

.map-note iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.listing-sort {
  flex: 0 0 222px;
}

.listing-sort select {
  width: 100%;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0 42px 0 18px;
  appearance: none;
  background: #fff url("../img/common/arrow_select.webp") right 14px center / 12px auto no-repeat;
  font: inherit;
  font-size: 13px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 28px;
}

.listing-card {
  position: relative;
  min-width: 0;
  color: var(--ink);
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 12px;
}

.listing-card .badge {
  position: absolute;
  right: 14px;
  top: clamp(104px, 11.8vw, 185px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border: 2px dotted var(--ink);
  background: var(--mint);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.listing-page .listing-card .badge {
  right: 24px;
  transform: translateY(8px);
}

.listing-card .badge::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: url("../img/common/pin.webp") center / contain no-repeat;
}

.listing-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
}

.listing-card p {
  min-height: 3.2em;
  margin: 7px 0 16px;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.listing-card dl {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.listing-card dl div {
  display: flex;
  gap: 8px;
  padding: 4px 0 5px;
  border-bottom: 1px dotted var(--ink);
}

.listing-card dt,
.listing-card dd {
  margin: 0;
}

.listing-sidebar {
  position: absolute;
  top: 0;
  right: -147px;
  width: 294px;
  padding: 0 0 40px;
}

.listing-sidebar::before {
  display: none;
}

.filter-box,
.filter-submit {
  position: relative;
  z-index: 1;
  width: 294px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: #fff;
}

.listing-sidebar .filter-box:first-child {
  margin-top: -36px;
}

.filter-box + .filter-box {
  margin-top: 0;
}

.filter-box h2 {
  margin: 0;
  padding: 20px 18px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.area-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 24px;
  padding: 24px 28px 28px;
}

.area-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
}

.area-checks input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--area-color);
}

.tag-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding: 24px 24px 30px;
}

.tag-box button {
  min-height: 28px;
  padding: 4px 13px;
  border: 1px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.filter-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 80px;
  margin-top: 22px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  transition: background .25s ease;
}

.filter-submit span,
.freeword-box button span {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff url("../img/common/btn_search.webp") center / contain no-repeat;
}

.freeword-box {
  margin-top: 0;
  overflow: visible;
  border-radius: 14px;
  background: #fff;
}

.freeword-box::before {
  display: none;
}

.freeword-box h2 {
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px dotted var(--ink);
}

.freeword-box input {
  display: block;
  width: calc(100% - 38px);
  height: 42px;
  margin: 24px auto 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
}

.freeword-box button {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 12px 5px 24px;
  border: 1px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(-50%);
}

.freeword-box button span {
  width: 34px;
  height: 34px;
  background-color: var(--ink);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 54px 0 0;
}

.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.pagination a.is-current {
  background: #fff;
  color: var(--ink);
}

.pagination span {
  width: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.special-page .site-header {
  position: relative;
}

.special-page .header-inner {
  width: min(1120px, calc(100% - 96px));
}

.special-main {
  background: #fff;
}

.special-hero-band {
  padding: 42px 0 86px;
  background: linear-gradient(var(--yellow) 0 315px, #fff 315px);
}

.special-shell {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
}

.special-brand {
  position: relative;
  z-index: 12;
  display: inline-grid;
  width: 224px;
  min-width: 224px;
  min-height: 82px;
  align-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: url("../img/common/about-tab2.png") left bottom / 100% 100% no-repeat;
  line-height: 1;
}

.special-brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 900;
}

.special-brand span {
  font-size: 16px;
  font-weight: 900;
}

.special-tabs {
  position: relative;
  z-index: 12;
  display: inline-flex;
  gap: 20px;
  margin-left: 46px;
  transform: translateY(-29px);
}

.special-tabs a,
.special-tabs span {
  display: grid;
  place-items: center;
  min-width: 140px;
  min-height: 42px;
  padding: 8px 22px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.special-tabs span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.special-frame {
  position: relative;
  margin-top: -3px;
  padding-top: 33px;
  padding-bottom: 84px;
  border: 3px solid transparent;
  border-radius: 0 14px 14px 14px;
  background: #fff;
  overflow: visible;
}

.special-frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: -3px;
  border: 3px solid var(--ink);
  border-radius: 0 14px 14px 14px;
  pointer-events: none;
}

.special-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.special-visual-card {
  position: relative;
  min-height: 530px;
  overflow: visible;
  background: var(--ink);
}

.special-visual-card + .special-visual-card {
  border-left: 3px solid var(--ink);
}

.special-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-visual-card span,
.special-post a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 26px;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.special-visual-card span {
  position: absolute;
  left: 50%;
  bottom: -3px;
  z-index: 2;
  width: 154px;
  height: 48px;
  min-width: 0;
  min-height: 0;
  padding: 5px 16px 0;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  transition: height .18s ease, padding-top .18s ease;
  transform: translateX(-50%);
}

.special-visual-card span::before,
.special-visual-card span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background: transparent;
}

.special-visual-card span::before {
  left: -27px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-right-radius: 22px;
  box-shadow: 8px 8px 0 7px #fff;
}

.special-visual-card span::after {
  right: -27px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-left-radius: 22px;
  box-shadow: -8px 8px 0 7px #fff;
}

.special-visual-card:hover span {
  height: 54px;
  padding-top: 0;
}

.special-news {
  width: calc(100% - 86px);
  margin: 44px auto 62px;
}

.special-news::before {
  content: none;
}

.special-category {
  border-top: 3px solid var(--ink);
}

.special-category-head {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: center;
  padding: 36px 36px 30px;
}

.special-category-head h2 {
  margin: 0;
  padding-right: 26px;
  border-right: 2px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: .82;
}

.special-category-head h2 span {
  display: block;
  margin-top: 8px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 17px;
  white-space: nowrap;
}

.special-category-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.special-lane {
  position: relative;
  border-top: 3px solid var(--ink);
  overflow: visible;
}

.special-category-people .special-lane {
  border-bottom: 3px solid var(--ink);
}

.special-lane.is-static {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.special-lane.is-static > :not(.special-lane-arrow) {
  min-height: 330px;
  border-right: 3px solid var(--ink);
}

.special-lane.is-static > :not(.special-lane-arrow):nth-last-child(3) {
  border-right: 0;
}

.special-lane-viewport {
  overflow: hidden;
}

.special-lane-track {
  display: flex;
  transition: transform .42s ease;
  will-change: transform;
}

.special-lane-track > * {
  flex: 0 0 25%;
  min-height: 330px;
  border-right: 3px solid var(--ink);
}

.special-lane-track > :last-child {
  border-right: 0;
}

.special-logo-panel,
.special-column-logo,
.special-modoki {
  display: grid;
  place-items: center;
  background: var(--yellow);
  text-align: center;
}

.special-logo-panel img {
  width: 132px;
}

.special-modoki img {
  width: 104px;
}

.special-column-logo img {
  width: 52px;
}

.special-post {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 30px 20px;
}

.special-post.green {
  background: #9ccd41;
}

.special-post.orange {
  background: #f0a51a;
}

.special-post.mint {
  background: var(--mint);
}

.special-placeholder,
.special-blank {
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), var(--ink) calc(50% - 1px), var(--ink) calc(50% + 1px), transparent calc(50% + 1px)),
    #fff;
}

.special-placeholder {
  aspect-ratio: 1.62;
  border: 3px solid var(--ink);
  overflow: hidden;
}

.special-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-post small {
  justify-self: start;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.special-post h3 {
  margin: 0;
  min-height: 52px;
  font-size: 15px;
  line-height: 1.35;
}

.special-post time {
  align-self: end;
  margin-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.special-post a {
  justify-self: end;
  margin-top: -28px;
}

.special-column-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

.special-lane-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  transform: translateY(-50%);
}

.special-lane-arrow.prev {
  left: -21px;
}

.special-lane-arrow.next {
  right: -21px;
}

.special-category-business .special-lane-arrow.prev,
.special-category-people .special-lane-arrow.prev {
  left: calc(25% - 21px);
}

.special-category-event .special-lane-arrow.next {
  right: calc(25% - 21px);
}

.special-lane-arrow:disabled {
  opacity: 1;
  cursor: default;
}

.special-list-band {
  padding-bottom: 92px;
  background: linear-gradient(var(--yellow) 0 310px, #fff 310px);
}

.special-list-page .special-shell {
  width: min(1400px, calc(100% - 160px));
}

.special-list-page .special-brand,
.special-detail-page .special-brand {
  width: 224px;
  min-width: 224px;
  min-height: 82px;
  align-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: url("../img/common/about-tab2.png") left bottom / 100% 100% no-repeat;
}

.special-list-page .special-brand strong,
.special-detail-page .special-brand strong {
  font-size: 42px;
}

.special-list-page .special-brand span,
.special-detail-page .special-brand span {
  font-size: 19px;
}

.special-list-page .special-tabs {
  margin-left: 26px;
}

.special-list-page .special-tabs a,
.special-list-page .special-tabs span {
  min-width: 138px;
}

.special-list-page .special-tabs span {
  min-width: 168px;
}

.special-list-page .special-list-layout {
  width: 90%;
}

.special-list-layout {
  position: relative;
  display: block;
  margin-top: -3px;
  padding: 44px 180px 64px 30px;
  border: 3px solid var(--ink);
  border-radius: 0 14px 14px 14px;
  background: #fff;
}

.special-list-layout::after {
  content: none;
}

.special-list-frame {
  position: relative;
  z-index: 1;
  border: 3px solid var(--ink);
  background: #fff;
}

.article-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;
  min-height: 172px;
  border-bottom: 3px solid var(--ink);
}

.article-row:last-child {
  border-bottom: 0;
}

.article-row > span {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.article-row small {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.article-row h2 {
  margin: 8px 0 18px;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
}

.article-row p {
  margin: 3px 0 0;
  font-weight: 900;
  line-height: 1.2;
}

.article-row p:first-of-type {
  font-size: 14px;
}

.article-row p:last-of-type {
  font-size: 12px;
}

.article-row p a {
  margin-left: 4px;
  text-decoration: underline;
}

.article-row figure,
.article-pick-box figure {
  margin: 0;
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), var(--ink) calc(50% - 1px), var(--ink) calc(50% + 1px), transparent calc(50% + 1px)),
    #fff;
}

.article-row figure {
  width: 126px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
}

.special-list-sidebar {
  position: absolute;
  z-index: 2;
  top: -50px;
  right: -147px;
  display: grid;
  align-content: start;
  gap: 26px;
  width: 294px;
  padding: 0 0 40px;
}

.special-list-sidebar::before {
  content: none;
}

.article-pick-box,
.article-category-box,
.article-search-box {
  position: relative;
  z-index: 1;
  width: 294px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: #fff;
}

.article-pick-box h2,
.article-category-box h2,
.article-search-box h2 {
  margin: 0;
  padding: 20px 18px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.article-pick-box a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px dotted var(--ink);
}

.article-pick-box a:last-child {
  border-bottom: 0;
}

.article-pick-box figure {
  width: 72px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
}

.article-pick-box time {
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.article-pick-box p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.article-category-box a {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 18px 28px;
  border-top: 3px solid var(--ink);
  font-weight: 900;
}

.article-category-box a::before {
  content: "›";
  margin-right: 8px;
}

.article-search-box {
  overflow: visible;
}

.article-search-box h2 {
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px dotted var(--ink);
  background: #fff;
  color: var(--ink);
}

.article-search-box form {
  position: relative;
  padding: 24px 20px 32px;
}

.article-search-box input {
  width: 100%;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.article-search-box button {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 12px 8px 24px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
}

.article-search-box button span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink) url("../img/common/btn_search.webp") center / 18px auto no-repeat;
}

.special-list-pagination {
  margin: 54px auto 0;
}

.special-detail-band {
  padding-bottom: 92px;
  background: linear-gradient(var(--yellow) 0 310px, #fff 310px);
}

.special-detail-page .special-shell {
  width: min(1400px, calc(100% - 160px));
}

.special-detail-page .special-list-layout {
  width: 90%;
}

.special-detail-page .special-tabs span {
  min-width: 210px;
}

.special-detail-layout {
  align-items: start;
}

.special-detail-frame {
  padding: 40px 0 0px;
  background: #fff;
}

.special-article-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.special-article-head > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 56px;
  border-bottom: 2px solid var(--ink);
}

.special-article-head span {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-right: 3px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
}

.special-article-head h1 {
  margin: 0;
  padding: 0 24px;
  font-size: 22px;
  line-height: 1.2;
}

.special-article-head time {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 0 0 0 18px;
  border-bottom: 2px solid var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.special-article-head p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 0;
  text-align: right;
  font-size: 13px;
  font-weight: 900;
}

.special-article-head a {
  text-decoration: underline;
}

.article-body {
  padding: 34px 0 0;
}

.article-body h2 {
  margin: 34px 0 28px;
  padding: 15px 28px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 21px;
}

.article-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.article-two-col figure {
  margin: 0;
  aspect-ratio: 1.42;
  border: 3px solid var(--ink);
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), var(--ink) calc(50% - 1px), var(--ink) calc(50% + 1px), transparent calc(50% + 1px)),
    #fff;
}

.article-two-col p,
.article-body > p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.15;
}

.article-body > .article-links {
  display: grid;
  gap: 12px;
  margin: 56px 0 0;
}

.article-links a {
  text-decoration: underline;
}

.article-links a:first-child::before {
  content: "▶";
  display: inline-block;
  margin-right: 6px;
  font-size: .75em;
}

.article-links a:last-child::after {
  content: "";
  display: inline-block;
  width: .72em;
  height: .72em;
  margin-left: 5px;
  border: 1px solid currentColor;
  box-shadow: 3px -3px 0 -1px #fff, 3px -3px 0 0 currentColor;
  vertical-align: -.02em;
}

.generic-detail-frame {
  width: min(100%, 980px);
  min-height: 420px;
}

.generic-detail-frame .article-body {
  padding: 42px 56px 80px;
}

.article-body p + p,
.article-body ul + p,
.article-body ol + p,
.article-body figure + p {
  margin-top: 1.4em;
}

.article-body ul,
.article-body ol {
  margin: 1.4em 0 0;
  padding-left: 1.4em;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.article-body li + li {
  margin-top: .35em;
}

.article-body img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border: 3px solid var(--ink);
}

.article-body a {
  text-decoration: underline;
}

.special-detail-page .article-search-box form {
  padding-bottom: 42px;
}

.special-detail-page .article-search-box button {
  bottom: -36px;
}

.special-back-list {
  margin-top: 48px;
}

.posting-page .site-header {
  position: relative;
}

.posting-main {
  background: #fff;
  font-weight: 400;
}

.posting-yellow {
  padding: 36px 0 70px;
  background: linear-gradient(var(--yellow) 0 280px, #fff 280px);
}

.posting-news {
  margin-bottom: 55px;
}

.posting-frame {
  width: min(1120px, calc(100% - 96px));
  margin: 100px auto 0 auto;
  border: 3px solid var(--ink);
  border-radius: 0 12px 12px 12px;
  background: #fff;
}

.posting-frame > h1 {
  position: relative;
  z-index: 2;
  top: -43px;
  display: inline-grid;
  place-items: center;
  min-width: 360px;
  min-height: 86px;
  margin: -62px 0 0 -3px;
  padding: 0 38px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #fff;
  font-size: 42px;
  line-height: 1;
}

.posting-frame > h1::after {
  content: "";
  position: absolute;
  right: -23px;
  bottom: 0;
  z-index: -1;
  width: 20px;
  height: 20px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-left-radius: 20px;
  box-shadow: -6px 6px 0 5px #fff;
  pointer-events: none;
}

.posting-content {
  width: min(920px, calc(100% - 80px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.posting-lead {
  text-align: center;
}

.posting-lead h2 {
  margin: 0 0 32px;
  font-size: 22px;
  line-height: 1.65;
}

.posting-lead p {
  margin: 0 auto 22px;
  max-width: 620px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.posting-quote {
  position: relative;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 26px 58px 12px;
}

.posting-quote::before,
.posting-quote::after {
  content: "";
  position: absolute;
  width: 41px;
  height: 34px;
  background: center / contain no-repeat;
}

.posting-quote::before {
  left: 0;
  top: 0;
  background-image: url("../img/common/kakomi01.png");
}

.posting-quote::after {
  right: 0;
  bottom: -10px;
  background-image: url("../img/common/kakomi02.png");
}

.posting-quote p {
  max-width: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.05;
}

.sp-br {
  display: none;
}

.posting-block,
.posting-flow {
  margin-top: 54px;
}

.posting-block > h2,
.posting-flow > h2 {
  position: relative;
  margin: 0 0 28px;
  padding: 20px 34px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 31px;
  line-height: 1.15;
}

.posting-block > h2 small {
  margin-left: 12px;
  font-size: .72em;
}

.posting-block h2 em,
.posting-flow h2 em {
  position: absolute;
  right: -2px;
  top: -24px;
  padding: 10px 28px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-style: normal;
  font-size: 17px;
}

.posting-block article {
  margin: 28px auto;
  max-width: 900px;
}

.posting-block article h3 {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin: 0;
  padding: 0;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.posting-block article h3 b {
  display: flex;
  align-items: center;
  font: inherit;
  padding-top: 1px;
}

.posting-block article h3 span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 58px;
  min-height: 52px;
  margin-right: 0;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
  padding-top: 2px;
}

.posting-block article p,
.posting-block > p {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
}

.posting-block table {
  width: min(860px, 100%);
  margin: 28px auto 0;
  border-collapse: collapse;
  font-size: 21px;
}

.posting-block th,
.posting-block td {
  border: 2px solid var(--ink);
  padding: 22px 28px;
}

.posting-block th {
  background: var(--yellow);
  text-align: left;
}

.posting-block table tr:nth-child(odd):not(:first-child) td {
  background: #efefef;
}

.posting-block td:last-child {
  width: 200px;
  text-align: center;
}

.posting-note {
  width: min(860px, 100%);
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

.posting-callout {
  position: relative;
  margin: 64px auto 0;
  max-width: 860px;
  padding: 38px 48px 30px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--yellow);
}

.posting-callout strong {
  position: absolute;
  left: 34px;
  top: -42px;
  color: var(--yellow);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    3px 0 0 var(--ink),
    -3px 0 0 var(--ink),
    0 3px 0 var(--ink),
    0 -3px 0 var(--ink),
    4px 4px 0 var(--ink);
}

.posting-callout ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
}

.posting-callout li::before {
  content: "・";
}

.posting-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 32px 0 42px;
  border-bottom: 3px solid var(--ink);
}

.posting-flow article::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 24px;
  height: 24px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.posting-flow article strong {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  align-self: start;
  border: 3px solid var(--ink);
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 74px;
  line-height: .8;
}

.posting-flow article strong span {
  display: block;
  margin-top: 12px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.posting-flow article p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
}

.posting-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 390px;
  min-height: 90px;
  margin: 78px auto 0;
  padding: 18px 44px;
  border: 3px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.posting-contact span {
  position: relative;
  width: 30px;
  height: 24px;
  margin-right: 18px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--yellow);
}

.posting-contact span::before,
.posting-contact span::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 15px;
  border-top: 3px solid var(--ink);
}

.posting-contact span::before {
  left: 1px;
  transform: rotate(35deg);
}

.posting-contact span::after {
  right: 1px;
  transform: rotate(-35deg);
}

.posting-promise {
  margin-top: 84px;
}

.posting-promise p {
  width: min(860px, 100%);
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.8;
}

.detail-page .site-header {
  position: relative;
}

.detail-page {
  --detail-area-color: var(--mint);
}

.detail-page[data-area="miyazaki"],
.detail-page[data-area="higashimorokata"] {
  --detail-area-color: #73d5d3;
}

.detail-page[data-area="hyuga"],
.detail-page[data-area="nobeoka"] {
  --detail-area-color: #7b73b4;
}

.detail-page[data-area="miyakonojo"] {
  --detail-area-color: #fff226;
}

.detail-page[data-area="kushima"],
.detail-page[data-area="ebino"] {
  --detail-area-color: #f0a51a;
}

.detail-page[data-area="koyu"],
.detail-page[data-area="nishiusuki"] {
  --detail-area-color: #d867a5;
}

.detail-page[data-area="saito"],
.detail-page[data-area="kobayashi"],
.detail-page[data-area="kitamorokata"] {
  --detail-area-color: #9ccd41;
}

.detail-page[data-area="higashiusuki"],
.detail-page[data-area="nichinan"] {
  --detail-area-color: #4fb0aa;
}

.detail-main {
  background: #fff;
}

.detail-hero-band {
  padding: 42px 0 70px;
  background: linear-gradient(var(--detail-area-color) 0 285px, #fff 285px);
}

.detail-shell {
  width: min(1380px, calc(100% - 160px));
  margin: 0 auto;
}

.detail-brand {
  position: relative;
  z-index: 8;
  display: inline-grid;
  width: 224px;
  min-width: 224px;
  min-height: 82px;
  align-content: center;
  padding: 0 24px;
  border: 0;
  background: url("../img/common/about-tab2.png") left bottom / 100% 100% no-repeat;
  line-height: 1;
}

.detail-brand::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 34px;
  bottom: 0;
  height: 3px;
  background: #fff;
  pointer-events: none;
}

.detail-brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.detail-brand span {
  font-size: 17px;
  font-weight: 900;
}

.detail-tabs {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 28px;
  transform: translateY(-16px);
}

.detail-tabs a,
.detail-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 24px;
  border: 2px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.detail-tabs span {
  min-width: 320px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.detail-frame {
  position: relative;
  margin-top: -3px;
  border: 3px solid transparent;
  border-radius: 0 14px 14px 14px;
  background: #fff;
  overflow: visible;
}

.detail-frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: -3px;
  border: 3px solid var(--ink);
  border-radius: 0 14px 14px 14px;
  pointer-events: none;
}

.detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
  gap: 48px;
  padding: 38px 38px 86px;
}

.detail-main-photo,
.detail-room-photo {
  position: relative;
}

.detail-main-photo::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: -11px;
  width: 220px;
  height: 155px;
  background: url("../img/top/mv_kado7.png") right bottom / contain no-repeat;
  pointer-events: none;
}

.detail-slide-viewport {
  width: 100%;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #fff;
}

.detail-main-photo .detail-slide-viewport {
  aspect-ratio: 1.18;
}

.detail-room-photo .detail-slide-viewport {
  aspect-ratio: 1.78;
}

.detail-slide-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .42s ease;
}

.detail-main-photo img,
.detail-room-photo img {
  width: 100%;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 10px;
}

.detail-slide-track img {
  flex: 0 0 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.detail-main-photo img {
  aspect-ratio: 1.18;
}

.detail-room-photo img {
  aspect-ratio: 1.78;
}

.detail-arrow {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.detail-prev {
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.detail-next {
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.detail-count {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 49px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0 14px;
  border-radius: 12px 0 0 0;
  background: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: .8;
}

.detail-count small {
  font-size: 9px;
}

.detail-dots,
.detail-room-dots {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.detail-dots span,
.detail-room-dots span {
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.detail-dots .is-active,
.detail-room-dots .is-active {
  background: var(--ink);
}

.detail-dots span[hidden],
.detail-room-dots span[hidden] {
  display: none;
}

.detail-summary p {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 900;
}

.detail-summary {
  transform: translateY(-20px);
}

.detail-summary p strong {
  font-size: 42px;
}

.detail-summary h1 {
  margin: 0 0 34px;
  font-size: 22px;
  line-height: 1.45;
}

.detail-summary dl {
  margin: 0;
}

.detail-summary dl div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dotted var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.detail-summary dt,
.detail-summary dd {
  margin: 0;
}

.detail-summary dt {
  font-weight: 900;
}

.detail-photo-section {
  position: relative;
  padding: 68px 86px 78px;
  background: var(--detail-area-color);
  border-top: 3px solid var(--ink);
}

.detail-photo-section.is-movie {
  background: var(--yellow);
}

.detail-mode-tabs {
  position: absolute;
  top: -67px;
  right: 48px;
  z-index: 12;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.detail-mode-tabs button {
  position: relative;
  z-index: 1;
  appearance: none;
  overflow: visible;
  display: grid;
  place-items: center;
  min-width: 136px;
  min-height: 42px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.detail-mode-tabs button:hover {
  opacity: 1;
}

.detail-mode-tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  z-index: 0;
  width: 176px;
  height: 15px;
  transform: translateX(-50%);
  background: url("../img/common/sub-kadomaru.png") center bottom / 176px 15px no-repeat;
  pointer-events: none;
}

.detail-mode-tabs button::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -9px;
  z-index: -1;
  height: 12px;
  border-bottom: 3px solid var(--ink);
  background: #fff;
  pointer-events: none;
}

.detail-mode-tabs button.is-active {
  min-height: 58px;
  background: var(--detail-area-color);
}

.detail-mode-tabs button.is-active::before {
  border-bottom: 0;
  background: var(--detail-area-color);
}

.detail-photo-section.is-movie .detail-mode-tabs button.is-active {
  background: var(--yellow);
}

.detail-photo-section.is-movie .detail-mode-tabs button.is-active::before {
  border-bottom: 0;
  background: var(--yellow);
}

.detail-panel[hidden] {
  display: none;
}

.detail-room-photo a {
  position: absolute;
  right: 45px;
  bottom: 0;
  z-index: 4;
  padding: 11px 20px 12px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  background: var(--detail-area-color);
  font-size: 14px;
  font-weight: 900;
}

.detail-room-photo a::before,
.detail-room-photo a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.detail-room-photo a::before {
  left: -21px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-right-radius: 18px;
  box-shadow: 7px 7px 0 6px var(--detail-area-color);
}

.detail-room-photo a::after {
  right: -21px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-left-radius: 18px;
  box-shadow: -7px 7px 0 6px var(--detail-area-color);
}

.room-caption {
  max-width: 560px;
  margin: 24px auto 84px;
  padding-top: 22px;
  border-top: 3px solid var(--ink);
}

.room-caption h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.room-caption p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.room-tour {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.room-tour h2 {
  margin: 0 0 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: .9;
}

.room-tour h2 span {
  display: block;
  margin-top: 6px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
}

.room-tour img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 6px solid var(--yellow);
  box-shadow: 0 0 0 3px var(--ink);
}

.detail-actions {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.detail-movie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 840px;
  margin: 0 auto 70px;
}

.detail-movie-grid a {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #000;
  color: #fff;
}

.detail-movie-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}

.detail-movie-grid a::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
}

.detail-movie-grid span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.detail-movie-grid small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.movie-room-tour {
  margin-bottom: 64px;
}

.movie-room-tour img {
  border-width: 5px;
}

.movie-actions {
  justify-content: center;
}

.detail-actions a,
.back-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 82px;
  padding: 16px 34px;
  border: 3px dotted var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.detail-actions a::before,
.back-list::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.back-list::before {
  background: url("../img/common/icon_home.webp") center / contain no-repeat;
  border: 0;
  border-radius: 0;
}

.detail-pickup {
  position: relative;
  padding: 44px 48px 58px;
  background: #fff;
  border-top: 3px solid var(--ink);
  border-radius: 0 0 11px 11px;
  overflow: visible;
}

.detail-pickup h2 {
  position: absolute;
  z-index: 2;
  top: -48px;
  left: 80px;
  margin: 0;
  min-width: 132px;
  padding: 10px 22px 11px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
  background: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.detail-pickup h2::after {
  content: "";
  position: absolute;
  right: -21px;
  bottom: 0;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-left-radius: 18px;
  box-shadow: -7px 7px 0 6px #fff;
  pointer-events: none;
}

.detail-pickup h2::before {
  content: "";
  position: absolute;
  left: -21px;
  bottom: 0;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-bottom-right-radius: 18px;
  box-shadow: 7px 7px 0 6px #fff;
  pointer-events: none;
}

.detail-pickup-viewport {
  overflow: hidden;
}

.detail-pickup-grid {
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform .42s ease;
}

.detail-pickup-grid .listing-card {
  flex: 0 0 calc((100% - 84px) / 4);
}

.detail-pickup .listing-card .badge {
  right: 18px;
  background: var(--detail-area-color);
  font-size: 14px;
}

.detail-pickup .listing-card p,
.detail-pickup .listing-card dl {
  font-size: 14px;
}

.detail-pickup > .detail-prev {
  left: -21px;
}

.detail-pickup > .detail-next {
  right: -21px;
}

.back-list {
  display: flex;
  width: fit-content;
  margin: 64px auto 0;
  min-width: 260px;
}

@media (max-width: 900px) {
  .about-frame,
  .about-column {
    width: calc(100% - 32px);
  }

  .about-panel {
    padding: 48px 28px 54px;
  }

  .promise-block {
    grid-template-columns: 1fr;
  }

  .promise-block > h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 28px;
    text-align: center;
  }

  .member-grid {
    grid-template-columns: 1fr 1fr;
  }

  .member-grid article:nth-child(3n) {
    border-right: 2px solid var(--ink);
  }

  .member-grid article:nth-child(2n) {
    border-right: 0;
  }

  .school-lead,
  .image-list article,
  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .modoki-logo {
    justify-content: center;
  }

  .listing-shell {
    width: calc(100% - 32px);
  }

  .listing-frame {
    border: 3px solid var(--ink);
    border-radius: 0 0 14px 14px;
    background: #fff;
    grid-template-columns: 1fr;
  }

  .listing-frame::after {
    display: none;
  }

  .listing-frame::before {
    display: none;
  }

  .listing-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px;
  }

  .listing-sidebar::before {
    display: none;
  }

  .filter-box,
  .filter-submit {
    width: 100%;
    margin: 0;
  }

  .freeword-box {
    grid-column: 1 / -1;
  }

  .listing-grid {
    gap: 36px 18px;
  }

  .detail-shell {
    width: calc(100% - 32px);
  }

  .detail-overview {
    grid-template-columns: 1fr;
  }

  .detail-pickup-grid {
    display: flex;
  }

  .detail-pickup-grid .listing-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 1100px) {
  .header-inner,
  .hero-inner {
    width: min(var(--content), calc(100% - 28px));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-side {
    width: min(620px, 100%);
    margin-left: auto;
  }

  .area-tab {
    right: 0;
  }

  .mini-property {
    grid-template-columns: 116px 1fr;
  }

  .special-lane-track > * {
    flex-basis: 50%;
  }
}

@media (max-width: 1100px) {
  .drawer-inner {
    width: min(720px, calc(100% - 32px));
  }

  .drawer-footer-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .drawer .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .drawer .footer-nav-group {
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
    border-top: 2px dotted var(--ink);
  }

  .drawer .footer-nav-group:first-child {
    border-left: 0;
  }

  .drawer .footer-buy-owner {
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-top: 2px dotted var(--ink);
  }

  .drawer .footer-buy-owner .footer-nav-group {
    padding: 16px 0;
    border-top: 0;
  }

  .drawer .footer-buy-owner .footer-nav-group + .footer-nav-group {
    padding-left: 18px;
    border-left: 2px dotted var(--ink);
  }

  .drawer .footer-search {
    padding: 0;
  }

  .drawer .footer-sns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .drawer .footer-sns a {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .sp-br {
    display: block;
  }

  .posting-quote p {
    font-size: 16px;
    line-height: 2;
  }

  /* SP: ヘッダーのz-indexをパネルより高くして隠れるようにする */
  .site-header {
    min-height: 54px;
    z-index: 40;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 54px;
    width: calc(100% - 20px);
  }

  .site-logo img {
    width: 128px;
  }

  .header-sns {
    display: none;
  }

  /* SP: メニューボタンを右端に固定（issue 5） */
  .menu-button {
    position: fixed;
    top: 12px;
    right: 10px;
    left: auto;
    z-index: 60;
    transform: none;
    width: 62px;
    height: 30px;
  }

  .about-yellow {
    padding-top: 22px;
    background: linear-gradient(var(--yellow) 0 250px, #fff 250px);
  }

  .about-news {
    margin-bottom: 24px;
  }

  .about-frame,
  .about-column {
    width: calc(100% - 20px);
  }

  .about-tabs {
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 0;
  }

  .about-tab {
    min-width: 160px;
    height: 42px;
    min-height: 42px;
    padding: 12px 10px 9px;
    border-width: 2px;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    font-size: 12px;
  }

  #tab-lab {
    flex: 0 0 178px;
    width: 178px;
    min-width: 178px;
  }

  #tab-school {
    flex: 0 0 190px;
    width: 190px;
    min-width: 190px;
  }

  #tab-contest {
    flex: 0 0 210px;
    width: 210px;
    min-width: 210px;
  }

  .about-tab span {
    font-size: 10px;
  }

  .about-tab.is-active {
    height: 66px;
    min-height: 66px;
    margin-right: 0;
    padding: 16px 14px 12px;
    font-size: 15px;
  }

  .about-tab.is-active::after {
    left: calc(100% - 2px);
    bottom: -2px;
    width: 40px;
    height: 17px;
  }

  .about-tab.is-active span {
    font-size: 12px;
    white-space: nowrap;
  }

  .about-tab:not(.is-active):hover {
    height: 66px;
    min-height: 66px;
    padding-top: 16px;
  }

  .about-panel {
    border-width: 2px;
    border-radius: 0 14px 14px 14px;
    padding: 34px 14px 42px;
  }

  .about-copy h1 {
    font-size: 18px;
    line-height: 1.65;
  }

  .about-removie {
    font-size: 52px;
  }

  .about-removie-sub,
  .about-copy h2 {
    font-size: 16px;
  }

  .about-lead {
    font-size: 12px;
    line-height: 1.8;
  }

  .about-lead::before,
  .about-lead::after {
    display: none;
  }

  .promise-block {
    margin: 44px auto;
    gap: 18px;
  }

  .promise-block > h2 {
    font-size: 24px;
  }

  .promise-list article h3,
  .about-list-section > h2,
  .contest-text h2,
  .faq h2 {
    min-height: 40px;
    padding: 8px 14px;
    border-width: 2px;
    font-size: 14px;
  }

  .promise-list article h3 span,
  .image-list h3 span,
  .benefit-list h3 span {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .promise-list article p {
    padding-left: 0;
    font-size: 12px;
  }

  .move-circles {
    gap: 8px;
  }

  .move-circles div {
    width: 92px;
    height: 92px;
  }

  .move-circles strong {
    font-size: 38px;
  }

  .move-circles span {
    font-size: 9px;
  }

  .flat-match h2,
  .flat-match h3 {
    font-size: 19px;
  }

  .member-grid {
    grid-template-columns: 1fr;
  }

  .member-grid article,
  .member-grid article:nth-child(2n),
  .member-grid article:nth-child(3n) {
    border-right: 0;
  }

  .school-intro,
  .contest-hero {
    margin-bottom: 38px;
  }

  .school-lead {
    gap: 18px;
  }

  .modoki-logo strong {
    font-size: 110px;
  }

  .modoki-logo span {
    font-size: 24px;
  }

  .school-lead p,
  .contest-hero p,
  .contest-text p,
  .image-list p,
  .benefit-list p,
  .merit-list p,
  .faq dd {
    font-size: 12px;
  }

  .faq dt {
    font-size: 17px;
  }

  .faq dd {
    font-size: 14px;
  }

  .image-list,
  .benefit-list,
  .merit-list {
    gap: 18px;
  }

  .image-list h3,
  .benefit-list h3,
  .merit-list h3 {
    border-width: 2px;
    font-size: 13px;
  }

  .image-list figure,
  .benefit-images figure {
    min-height: 120px;
  }

  .about-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
  }

  .about-actions a {
    width: 100%;
    min-height: 50px;
  }

  .contest-hero h1 {
    font-size: 24px;
  }

  .abc-logo {
    font-size: 70px;
  }

  .flow-chart {
    max-width: 100%;
  }

  .flow-chart span {
    display: none;
  }

  .about-column {
    margin-top: 30px;
  }

  .about-column-intro {
    display: block;
  }

  .about-column-intro h2 {
    min-width: 0;
    margin-bottom: 12px;
    padding-right: 0;
    border-right: 0;
    font-size: 24px;
  }

  .about-column-grid {
    grid-template-columns: 1fr;
    border-width: 2px;
  }

  .about-column-grid a {
    grid-template-columns: 42px 1fr 86px;
    gap: 10px;
    min-height: 102px;
    border-right: 0;
    border-bottom-width: 2px;
  }

  .about-column-grid a:nth-last-child(-n+2) {
    border-bottom: 2px solid var(--ink);
  }

  .about-column-grid a:last-child {
    border-bottom: 0;
  }

  .about-column-grid h3 {
    font-size: 12px;
  }

  .about-column-grid figure {
    min-height: 66px;
  }

  .listing-hero {
    padding: 24px 0 48px;
    background: linear-gradient(var(--area-color) 0 250px, #fff 250px);
  }

  .listing-shell {
    width: calc(100% - 20px);
    transform: none;
  }

  .listing-brand {
    width: 160px;
    min-width: 160px;
    min-height: 66px;
    padding: 0 14px;
  }

  .listing-brand strong {
    font-size: 31px;
  }

  .listing-brand span {
    font-size: 12px;
  }

  .listing-tabs {
    gap: 7px;
    margin-left: 12px;
    overflow-x: auto;
    transform: translateY(-12px);
  }

  .listing-tabs a,
  .listing-tabs button {
    min-width: 86px;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 10px;
  }

  .listing-frame {
    width: 100%;
    margin-top: -15px;
    border-width: 2px;
  }

  .listing-content {
    padding: 28px 14px 36px;
  }

  .listing-title-row {
    display: block;
    margin-bottom: 26px;
  }

  .listing-title-row h1 {
    font-size: 32px;
  }

  .listing-title-row h1 small {
    font-size: 12px;
  }

  .listing-title-row h1 strong {
    font-size: 30px;
  }

  .map-note {
    margin: 10px 0 16px;
    font-size: 18px;
  }

  .listing-sort {
    display: block;
    width: 100%;
    margin-top: 18px;
  }

  .listing-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .listing-card .badge {
    top: clamp(142px, 52vw, 250px);
  }

  .listing-sidebar {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    grid-template-columns: 1fr;
    padding: 18px 14px 8px;
  }

  .filter-box h2 {
    padding: 15px;
    font-size: 15px;
  }

  .area-checks {
    gap: 13px 18px;
    padding: 20px;
  }

  .filter-submit {
    min-height: 62px;
  }

  .pagination {
    margin-top: 36px;
  }

  .detail-hero-band {
    padding: 24px 0 44px;
    background: linear-gradient(var(--detail-area-color) 0 190px, #fff 190px);
  }

  .special-lane-track > * {
    flex-basis: 100%;
  }

  .detail-shell {
    width: calc(100% - 20px);
  }

  .detail-brand {
    width: 160px;
    min-width: 160px;
    min-height: 66px;
    padding: 0 14px;
  }

  .detail-brand strong {
    font-size: 23px;
  }

  .detail-brand span {
    font-size: 12px;
  }

  .detail-tabs {
    gap: 8px;
    margin-left: 12px;
    overflow-x: auto;
    transform: translateY(-12px);
  }

  .detail-tabs a,
  .detail-tabs span {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 14px;
    font-size: 10px;
  }

  .detail-frame {
    margin-top: -3px;
    border-width: 2px;
  }

  .detail-overview {
    padding: 24px 14px 72px;
    gap: 28px;
  }

  .detail-summary h1 {
    font-size: 18px;
  }

  .detail-photo-section {
    padding: 48px 14px 52px;
    border-top-width: 2px;
  }

  .detail-mode-tabs {
    right: 14px;
    top: -50px;
  }

  .detail-mode-tabs button {
    min-width: 78px;
    min-height: 42px;
    border-width: 2px;
    font-size: 17px;
  }

  .detail-room-photo img {
    aspect-ratio: 1.25;
  }

  .detail-room-photo .detail-slide-viewport {
    aspect-ratio: 1.25;
  }

  .detail-actions {
    flex-direction: column;
    gap: 16px;
  }

  .detail-movie-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .detail-movie-grid a {
    min-height: 300px;
  }

  .detail-actions a,
  .back-list {
    min-width: 0;
    width: 100%;
  }

  .detail-pickup {
    padding: 38px 14px 42px;
    border-top-width: 2px;
  }

  .detail-pickup-grid {
    display: flex;
  }

  .detail-pickup-grid .listing-card {
    flex-basis: 100%;
  }

  .detail-pickup .listing-card .badge {
    top: clamp(142px, 52vw, 250px);
  }

  .detail-pickup > .detail-prev {
    left: -21px;
  }

  .detail-pickup > .detail-next {
    right: -21px;
  }

  .drawer {
    z-index: 80;
    border-bottom-width: 1px;
  }

  .drawer-inner {
    width: min(556px, calc(100% - 32px));
    padding: 8px 0 30px;
    overflow-x: hidden;
  }

  .drawer-head {
    min-height: 26px;
    margin-bottom: 32px;
  }

  .drawer-logo img {
    width: 106px;
  }

  .drawer-close {
    width: 34px;
    height: 18px;
    border-width: 1px;
    border-radius: 999px;
    font-size: 15px;
  }

  .drawer-footer-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
  }

  .drawer .footer-lead {
    padding-top: 10px;
    text-align: left;
  }

  .drawer .footer-lead p {
    margin-bottom: 4px;
    padding: 0 18px;
    font-size: 10px;
    line-height: 1;
  }

  .drawer .footer-lead p::before,
  .drawer .footer-lead p::after {
    width: 10px;
    border-top-width: 1px;
  }

  .drawer .footer-lead strong {
    font-size: 28px;
    line-height: 1.22;
  }

  .drawer .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .drawer .footer-nav-group {
    min-height: 0;
    padding: 16px 0;
    border-top: 2px dotted var(--ink);
    border-left: 0;
  }

  .drawer .footer-nav-group:first-child {
    border-left: 0;
  }

  .drawer .footer-nav-group p {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .drawer .footer-nav-group a,
  .drawer .footer-nav-group a:first-of-type {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.25;
  }

  .drawer .footer-buy-owner {
    grid-template-columns: 1fr 1fr;
    border-top: 2px dotted var(--ink);
    border-left: 0;
  }

  .drawer .footer-buy-owner .footer-nav-group {
    padding: 16px 0;
    border-top: 0;
  }

  .drawer .footer-buy-owner .footer-nav-group + .footer-nav-group {
    padding-left: 16px;
    border-left: 2px dotted var(--ink);
  }

  .drawer .footer-search {
    gap: 10px;
    margin-top: 4px;
    padding: 0;
  }

  .drawer .footer-search select,
  .drawer .footer-search input {
    height: 40px;
    font-size: 13px;
    border-width: 2px;
  }

  .drawer .footer-search select {
    padding: 0 24px 0 8px;
    background-size: 7px auto;
    background-position: right 8px center;
  }

  .drawer .footer-keyword {
    grid-template-columns: 1fr 40px;
    border-width: 2px;
  }

  .drawer .footer-keyword input {
    height: 36px;
    padding: 0 14px;
    font-size: 21px;
  }

  .drawer .footer-keyword button {
    width: 36px;
    height: 36px;
    border-left-width: 2px;
    background-size: 29px 29px;
  }

  .drawer .footer-sns {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(220px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .drawer .footer-sns a {
    width: 100%;
    max-width: 100%;
    min-height: 64px;
    border-width: 2px;
    border-radius: 8px;
    font-size: 20px;
    white-space: nowrap;
  }

  .drawer-new {
    margin-top: 52px;
    padding: 22px 22px 20px;
    border-radius: 8px;
  }

  .drawer-new-head {
    margin: -42px -2px 20px 0;
  }

  .drawer-new-head h2 {
    padding: 9px 12px 10px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    font-weight: 900;
  }

  .drawer-new-head p {
    font-size: 8px;
    line-height: 1;
  }

  .drawer-new-head strong {
    font-size: 24px;
  }

  .drawer-new-slider {
    grid-template-columns: 24px 1fr 24px;
    gap: 8px;
    margin: 0 -34px;
  }

  .drawer-new-slider > button {
    width: 24px;
    height: 24px;
    border-width: 2px;
    border-radius: 6px;
    font-size: 10px;
  }

  .drawer-new-track {
    gap: 12px;
  }

  .drawer-new-card {
    flex-basis: calc((100% - 36px) / 4);
    font-size: 8px;
  }

  .drawer-new-card img {
    border-width: 2px;
    border-radius: 6px;
  }

  .drawer-new-card .badge {
    right: 6px;
    top: clamp(40px, calc((100vw - 156px) / 5.8 - 2px), 86px);
    gap: 2px;
    padding: 3px 6px;
    border-width: 1px;
    font-size: 5px;
  }

  .drawer-new-card .badge::before {
    width: 7px;
    height: 7px;
  }

  .drawer-new-card strong {
    margin-top: 7px;
    font-size: 8px;
  }

  .drawer-new-card p {
    min-height: 3.1em;
    margin-top: 3px;
    padding-bottom: 7px;
    border-bottom-width: 2px;
    font-size: 7px;
    line-height: 1.55;
  }

  .drawer-new-card dl {
    margin-top: 7px;
    font-size: 6px;
    line-height: 1.28;
  }

  .drawer-new-card dl div {
    gap: 4px;
    padding: 2px 0;
    border-bottom-width: 1px;
  }

  .hero {
    padding: 68px 0 0;
    background: var(--mint);
  }

  .hero-inner {
    display: block;
    width: calc(100% - 16px);
    margin-bottom: 48px; /* PICK UPタグが埋まらないよう余白を拡大 */
  }

  .hero-photo {
    height: auto;
  }

  .hero-photo::after {
    display: none;
  }

  .hero-photo img {
    aspect-ratio: 1 / 1.24;
  }

  .hero-pin {
    top: 28px;
    min-width: 132px;
    padding: 10px 14px;
    font-size: 13px;
  }

  /* SP: No.数字をキャッチコピーにかからないよう上へ（issue 6） */
  .hero-number {
    bottom: 170px;
    left: 14px;
    font-size: 48px;
  }

  .hero-number span {
    font-size: 22px;
  }

  /* SP: キャッチコピータグ — PCと同様に左端から飛び出す形 */
  .hero-tags {
    left: -4px; /* ボーダー(3px)+1px分だけ左に出す */
    bottom: 20px;
    gap: 7px;
    width: calc(100% + 4px);
  }

  .hero-tags span {
    min-width: 0;
    padding: 7px 14px;
    border-left: 0;            /* 黒ラインなし（緑背景から自然に出る） */
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 16px;
  }

  .hero-tags span:nth-child(2),
  .hero-tags span:nth-child(3) {
    min-width: 0;
  }

  .hero-scroll,
  .hero-count {
    display: none;
  }

  .hero-side {
    width: 100%;
    margin: 16px 0 20px;
    padding-bottom: 40px; /* PICK UPタグとおすすめタグの距離を取る */
  }

  .hero-side::before {
    height: auto;
    bottom: 120px; /* PICKUPタグのすぐ上まで白背景を伸ばしてぴったりくっつける */
  }

  .side-list {
    margin-top: -70px; /* タイトルと詳細枠の間の余白を半分以下に詰める */
    padding-top: 20px;
    padding-bottom: 15px; /* 最後のカードが白背景から飛び出さないよう余白を確保 */
  }

  .recommend-tags {
    margin: 30px 0 0;
    position: relative;
    z-index: 10;
  }

  .pickup-label {
    padding: 14px 24px 12px;
    bottom: -46px;
    font-size: 15px;
  }

  .mini-property {
    grid-template-columns: 92px 1fr;
    gap: 10px;
    padding: 8px;
  }

  .mini-pin {
    position: static;
    display: inline-block;
    min-width: 0;
    margin-bottom: 5px;
    padding: 4px 8px;
  }

  /* ===== SP: エリアサーチ ===== */

  /* 通常時のボタン: ヘッダー直下・左端に固定 */
  .area-tab {
    right: auto;
    left: 0;
    top: 54px;
    z-index: 35; /* パネル(30)より前面 */
    width: 160px;
    height: 46px;
    background: url("../img/common/area_search_btn_off.png") left top / 160px 46px no-repeat;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: top 0.3s ease; /* パネルと同期してスライド */
  }

  /* 展開時: onボタン画像に切り替え */
  .area-tab[aria-expanded="true"] {
    width: 201px;
    height: 60px;
    background-image: url("../img/common/area_search_btn_on.png");
    background-size: 201px 60px;
  }

  .area-tab span {
    display: none;
  }

  .area-tab.is-open {
    /* PCの right 移動を無効化 */
    right: auto;
    left: 0;
  }

  /* SP: エリアパネル — ヘッダーの裏に隠れて、下にスライド */
  /* ヘッダーz-index: 40 > パネルz-index: 30 なので closed 時は隠れる */
  .area-panel {
    top: 54px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 54px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: none;
    transform: translateY(-100%);
    transition: transform .3s ease;
  }

  .area-panel.is-open {
    transform: translateY(0);
  }

  .area-note {
    font-size: 15px;
  }

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

  /* SP: ENTRY888の余白を縮小してエッジにくっつかないよう調整 */
  .entry-pill {
    width: auto;
    padding: 6px 18px 8px; /* 左右の余白を増やす */
  }

  .pickup-strip {
    width: 100%;
    padding: 18px 0 16px;
  }

  /* SP: 新着ピックアップをスライダー化するためのスタイル */
  .pickup-strip.is-slider-ready {
    padding: 0 10px 40px;
  }

  .pickup-slider {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .pickup-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
  }

  .pickup-slider-page {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    box-sizing: border-box;
  }

  .pickup-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 矢印を左端・右端に配置 */
    margin-top: 24px;
  }

  .pickup-slider-prev,
  .pickup-slider-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .pickup-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .pickup-slider-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    padding: 0;
  }

  .pickup-slider-dot.is-active {
    background: var(--ink);
  }

  /* SPでJSが動くまでは非表示 */
  .pickup-row,
  .pickup-strip.is-slider-ready .pickup-row {
    display: none;
  }

  /* --- スマホスライダー内のカードレイアウト --- */
  .pickup-card {
    grid-template-columns: 110px 1fr;
    gap: 12px;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
  }

  .pickup-card img {
    width: 110px;
    height: 130px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    object-fit: cover;
  }

  .pickup-card > div {
    display: flex;
    flex-direction: column;
  }

  .pickup-card p:not(.pickup-pin) {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 8px;
    margin: 0 0 8px;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .pickup-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 11px;
    padding-bottom: 8px;
    border-bottom: 1px dotted var(--ink);
    margin-bottom: 8px;
  }

  .pickup-card-meta span {
    font-size: 11px;
  }

  .pickup-pin {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 3px 8px;
    border: 1px dotted var(--ink);
    border-radius: 999px;
    background: var(--cyan);
    font-size: 10px;
    transform: none;
  }

  .pickup-pin::before {
    width: 10px;
    height: 10px;
  }

  .pickup-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 10px;
    font-weight: bold;
  }

  .pickup-card-tags a {
    color: var(--ink);
    text-decoration: underline;
  }

  .news-band {
    grid-template-columns: auto minmax(0, 1fr) 34px;
    gap: 10px;
    width: calc(100% - 24px);
    min-height: 54px;
    padding: 8px 9px 8px 16px;
  }

  .news-band h2 {
    font-size: 22px;
  }

  .news-band p {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 4px 8px;
    white-space: normal;
    align-items: flex-start;
  }

  .news-text {
    flex: 1 1 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-band time::after {
    margin-left: 6px;
    padding: 3px 7px 4px;
    font-size: 10px;
  }

  .news-band > a {
    width: 34px;
    height: 34px;
  }

  .special {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* SP用スライダーとしてJSでスクロールさせるためgapは削除、またはJSで考慮 */
  }

  .special-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
  }

  .special-link {
    flex: 0 0 100%;
    width: 100%;
  }

  .special-link span {
    width: 120px;
    height: 41px;
    font-size: 14px;
    bottom: -10px;
  }

  .feature-list,
  .properties {
    width: 100%;
    padding: 32px 10px;
  }

  .feature-intro {
    display: block;
  }

  .feature-intro h2 {
    min-width: 0;
    margin-bottom: 14px;
    padding-right: 0;
    border-right: 0;
    font-size: 26px;
  }

  .feature-intro p {
    font-size: 13px;
  }

  .section-heading {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 124px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .feature-item:nth-child(odd) {
    border-right: 0;
  }

  .feature-item:nth-last-child(-n+2) {
    border-bottom: 2px solid var(--ink);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-no {
    border-right-width: 2px;
    font-size: 24px;
  }

  .feature-body {
    padding: 14px 86px 14px 10px;
  }

  .feature-item h3 {
    font-size: 13px;
  }

  .feature-item img {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 68px;
    height: 68px;
    margin-right: 0;
    transform: translateY(-50%);
  }

  .property-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .property-card {
    border-width: 2px;
  }

  .property-card::after {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .property-card h3 {
    font-size: 16px;
  }

  .property-card-body {
    right: 10px;
    bottom: 14px;
    left: 10px;
  }

  .property-card .badge {
    margin-bottom: 8px;
    padding: 4px 8px 5px;
    font-size: 16px;
  }

  .property-card .badge::before {
    width: 14px;
    height: 14px;
  }

  .property-card p {
    font-size: 16px;
  }

  .site-footer {
    width: 100%;
    padding: 24px 10px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    padding-top: 46px;
  }

  .footer-actions {
    top: -40px;
    right: 0;
  }

  .footer-lead {
    text-align: left;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav-group {
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
    border-top: 2px dotted var(--ink);
  }

  .footer-sns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-sns a {
    width: 100%;
  }

  .footer-bottom-links {
    grid-column: auto;
    gap: 16px;
  }

  .page-top {
    right: 10px;
    bottom: 10px;
    width: 38px;
  }
}
