:root {
  --base: #933;
  --base-dark: #711;
  --blue: #57a;
  --text: #222;
  --text-light: #666;
  --bg-cream: #f7f5ee;
  --border: #ddd;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {-webkit-text-size-adjust:100%;text-size-adjust:100%;-webkit-tap-highlight-color:transparent;overflow-x: clip;scroll-behavior: smooth; }
body { font-family: 'Zen Kaku Gothic New', sans-serif; color: var(--text); line-height: 2; background: var(--bg-cream); overflow-x:clip; font-size: clamp(0.875rem,1.6vw,1rem); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; line-height:1.5; }
.material-symbols-outlined { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
ul.kome { list-style: none; font-size:clamp(0.75rem,1.5vw,0.875rem); }
ul.kome > li { position: relative; padding-left: 1.4em; line-height:1.5; margin-bottom:0.25rem; }
ul.kome > li::before { content: "※"; position: absolute; left: 0; }
.br-sp { display: none; }
@media (min-width: 768px) { .tel-link { pointer-events: none; } }
.container { max-width: 65rem; margin: 0 auto; padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ===== Split layout (left slideshow + right contents) ===== */
.slideshow { position: fixed; top: 0; left: 0; width: 33vw; height: 100vh; overflow: hidden; background: #000; z-index: 1; }
.slideshow .slide { position: absolute; inset: 0; background-size: var(--zoom, cover); background-position: var(--pos, center); background-repeat: no-repeat; opacity: 0; animation: slideFade 24s infinite; }
/* PC用トリミング位置（--pos: background-position の値） */
.slideshow .slide:nth-child(1) { animation-delay: 0s;  --pos: center; }
.slideshow .slide:nth-child(2) { animation-delay: 4s;  --pos: center; }
.slideshow .slide:nth-child(3) { animation-delay: 8s; --pos: center; }
.slideshow .slide:nth-child(4) { animation-delay: 12s; --pos: center; }
.slideshow .slide:nth-child(5) { animation-delay: 16s; --pos: center; }
.slideshow .slide:nth-child(6) { animation-delay: 20s; --pos: 40% center; }
@keyframes slideFade { 0% { opacity: 0; } 6% { opacity: 1; } 16.66% { opacity: 1; } 22.66% { opacity: 0; } 100% { opacity: 0; } }
.slideshow::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.15); z-index: 1; pointer-events: none; }
.slide-overlay { position: absolute; top: 10#%; left: 0; right: 0; z-index: 2; text-align: center; padding: clamp(2rem,6vw,4rem) 1rem 1rem 1rem; }
.slide-logo { width: clamp(8rem, 14vw, 14rem); aspect-ratio: 1 / 1; margin: 0 auto clamp(0.5rem,1.6vw,1rem); }
.slide-logo img { width: 100%; height: 100%; object-fit: contain; }
.slide-copy { color: #fff; font-weight: 500; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.5; text-shadow: 0 1px 6px rgba(0,0,0,.55); }
.slide-nav { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2; display: flex; align-items: stretch; max-width: calc(100% - 2rem); background: rgba(0,0,0,0); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,.2); border-radius: 20rem; box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.05); overflow: hidden; padding:0; }
.slide-nav a { display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; font-weight: 500; font-size: clamp(0.75rem, 1.1vw, 1rem); line-height: 1.25; padding: 0.7rem 1rem 0.7rem 1.5rem; white-space: nowrap; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.slide-nav a + a { border-left: 1px solid rgba(255,255,255,.15); padding: 0.7rem 1.5rem 0.7rem 1rem; }
.slide-nav a:hover { background: rgba(255,255,255,.18); }
.contents { position: relative; width: calc(100% - 33vw); margin-left: 33vw; background: var(--bg-cream); }

@media (max-width: 960px) {
  .slideshow { position: relative; width: 100%; height: auto; }
  .contents { width: 100%; margin-left: 0; }
}
/* 960〜560px: 横長(3/2)・背景はcover */
@media (min-width: 561px) and (max-width: 960px) {
  .slideshow { aspect-ratio: 3 / 2; clip-path: url(#mainCurveWide); }
  .slideshow .slide { --pos: center; background-size: cover; }
  .slideshow .slide:nth-child(1) { --pos: center 70%; }
  .slideshow .slide:nth-child(2) { --pos: center 30%; }
  .slideshow .slide:nth-child(3) { --pos: center 30%; }
  .slideshow .slide:nth-child(6) { --pos: center 100%; }
}
/* 560px以下: 正方形・スライドごとのトリミング位置/拡大 */
@media (max-width: 560px) {
  .slideshow { aspect-ratio: 1; clip-path: url(#mainCurve); }
  .slideshow .slide:nth-child(1) { --pos: 0 100%; --zoom: auto 115%; }
  .slideshow .slide:nth-child(2) { --pos: 20% 20%; --zoom: auto 140%; }
  .slideshow .slide:nth-child(3) { --pos: 30% 20%; --zoom: auto 120%; }
  .slideshow .slide:nth-child(4) { --pos: 20% center; --zoom: auto 120%; }
  .slideshow .slide:nth-child(5) { --pos: 10% 40%; --zoom: auto 120%; }
  .slideshow .slide:nth-child(6) { --pos: 20% 100%; --zoom: auto 120%; }
}

/* ===== Header ===== */
.header-btns { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200; display: flex; flex-direction: row; gap: 0.75rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 500; cursor: pointer; border: none; white-space: nowrap; }
.btn .material-symbols-outlined { font-size: 1.25rem; }
.header-btns .btn { flex-direction: column; justify-content: center; gap: 0.25rem; width: 7rem; height:7rem; padding: 0; border: 1px solid #fff; border-radius: 50%; line-height: 1.3; text-align: center; background: var(--base); color: #fff; box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.05); }
.header-btns .btn .material-symbols-outlined { font-size:clamp(2rem,5vw,3rem); margin-top:-0.5rem; }

/* ===== Search form ===== */
.search-box { position: relative; background: rgba(255,255,255,.96); border: 1px solid #eee; border-radius:1rem; padding:1.5rem; margin: 0 auto; box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.05); }
.search-head { position: absolute; top: 0; left: 1.5rem; transform: translate(0, -50%); display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; white-space: nowrap;  }
.search-head .material-symbols-outlined { color: var(--base); font-size: 2rem; }
.search-row { display: flex; gap: clamp(0.5rem,1.6vw,1rem); align-items: flex-end; margin-bottom: 1rem; flex-wrap: wrap; }
.field { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; min-width: 7.5rem; }
.field:has(input[type="date"]) { min-width: 9rem; }
.field label { font-size: 0.75rem; font-weight: 500; color: var(--text-light); }
/* Area radio chips */
.field-area { flex-basis: 100%; display:none; }
.field-heading { font-size: 0.75rem; font-weight: 500; color: var(--text-light); }
.radio-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-chip { cursor: pointer; }
.field .radio-chip input { position: absolute; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; }
.radio-chip > span { display: inline-block; padding: 0.4rem 1rem; border: 1px solid var(--border); border-radius: 20rem; background: #fff; color: var(--text); font-size: 0.875rem; font-weight: 500; line-height: 1.4; transition: background .15s, color .15s, border-color .15s; }
.radio-chip:hover > span { border-color: var(--base); }
.radio-chip input:checked + span { background: var(--base); color: #fff; border-color: var(--base); }
.radio-chip input:focus-visible + span { box-shadow: 0 0 0 2px rgba(170,51,51,.25); }
.field-control { position: relative; display: flex; align-items: center; }
.field-control .field-icon { position: absolute; left: 0.75rem; font-size: 1.25rem; color: #888; pointer-events: none; }
.field input,
.field select { width: 100%; border: 1px solid var(--border); font-size: 1rem; border-radius: 0.5rem; padding: 0.6rem 0.75rem; font-family: inherit; background: #fff; color: #444; min-width:0; line-height:1.5; }
.field input.has-icon { padding-left: 2.25rem; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23888' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 1.75rem; }
.field input:focus,
.field select:focus { outline: none; border-color: var(--base); box-shadow: 0 0 0 2px rgba(170,51,51,.15); }
.search-actions { display: flex; gap: 0.75rem; justify-content: flex-end; }
.btn-search { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--base); color: #fff; border: none; border-radius: 20rem; padding: 0.75rem 1.5rem; font-size: 1.125rem; font-weight: 500; cursor: pointer; }
.btn-search .material-symbols-outlined { font-size: 1.25rem; }
.btn-search:hover { background: var(--base-dark); }
.btn-clear { background: #fff; color: #555; border: 1px solid var(--border); border-radius: 20rem; padding: 0.75rem 1.75rem; font-weight: 500; cursor: pointer; }
input[type="date"]::-webkit-date-and-time-value { text-align: left !important; }


/* ===== Section ===== */
section { margin-bottom: clamp(2rem,6vw,4rem); }
#hotels, #experience { scroll-margin-top: 1rem; }
#search { scroll-margin-top: 2.5rem; }
.sec-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.sec-head .material-symbols-outlined { color: var(--base); font-size:2.5rem; }
.sec-title { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 500; }
.sec-desc { color: var(--text-light); margin-bottom: 1.5rem; line-height:1.75; }
.sec-top { display: flex; justify-content: space-between; align-items:center; }
.link-all { border: 1px solid var(--border); border-radius: 20rem; padding: 0.5rem 1.5rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; white-space:nowrap; }
.link-all .material-symbols-outlined { font-size: 1rem; }

/* Hotel cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap:clamp(0.75rem,2vw,1.25rem); }
.hotel-card { display: block; position: relative; border: 1px solid #eee; border-radius: 1.25rem; overflow: hidden; background: #fff; box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.05); transition: box-shadow .2s, transform .2s; }
.hotel-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.08); transform: translateY(-3px); }
.hotel-thumb { position: relative; }
.hotel-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.badge { position: absolute; bottom: 0.5rem; left: 0.5rem; background: rgba(60,50,40,.82); color: #fff; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 2rem; line-height:1.5; }
.hotel-body { padding: 1rem; }
.hotel-name { font-weight: 500; margin-bottom: 0.5rem; }
.hotel-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; min-height: 2.5rem; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden; }
.hotel-more { color: var(--text); font-size: 0.75rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.25rem; }
.hotel-more .material-symbols-outlined { font-size: 1rem; }
.card-grid:has(+ .card-grid) { margin-bottom: 1.25rem; }
#hotels .card-grid .planmaker-message { grid-column: 1 / -1;}


/* ===== Benefits ===== */
.benefits { position: relative; background: #fff; border-radius: 1rem; padding: 2rem; }
.benefits-plus { position: absolute; top: 0; left: 50%; transform: translate(-50%, -70%); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; line-height: 1; color: var(--base); }
.benefits-title { /*text-align: center;*/ font-weight: 500; display: flex; align-items: center; /*justify-content: center;*/ gap: 0.5rem; margin-bottom: 0.5rem; }
.benefits-title .material-symbols-outlined { color: var(--base); font-size:2.5rem; }
.benefits-sub {color: var(--text-light); margin: 0 0 1.5rem; }

/* Rank tabs */
.rank-tabs { display: flex; gap: clamp(0.5rem,1.2vw,0.75rem); justify-content: flex-start; margin-bottom: 1.5rem; flex-wrap: wrap; }
.rank-tab { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 1rem; background:var(--base); color: #fff; cursor: pointer; border: none; opacity: .5; transition: opacity .2s, transform .2s; }
.rank-label { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.rank-label small { font-size: 0.75rem; font-weight: 500; }
.rank-label strong { font-size: 2.5rem; font-weight: 500; }
.rank-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; text-align: left; }
.rank-tab .price,
.rank-tab .count { font-size: 0.8125rem; font-weight: 500; }
.rank-tab.active { opacity: 1; transform: translateY(-2px); box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.08); }

.rank-panel { display: none; }
.rank-panel.active { display: block; margin-bottom: 1.25rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); /*gap: 1rem;*/ margin-bottom: 1rem; }
.benefit-item { position: relative; background: #fff; border-radius: 0.5rem; padding: clamp(0.75rem,1.6vw,1rem) clamp(0.75rem,1.6vw,1rem) clamp(0.75rem,1.6vw,1rem) 0; display: flex; /*gap: 0.75rem;*/ align-items: center; /*box-shadow: 0 1px 3px rgba(0,0,0,.05);*/ transition: box-shadow .2s, transform .2s; }
.benefit-item:hover { /*box-shadow: 0 4px 12px rgba(0,0,0,.12);*/ transform: translateY(-2px); }
.benefit-thumb { position: relative; flex-shrink: 0; margin-right:0.75rem; }
.benefit-thumb img { width: clamp(4.5rem, 8vw, 6rem); height: clamp(4.5rem, 8vw, 6rem); border-radius: 0.5rem; object-fit: cover; }
.benefit-num { position: absolute; left:-0.5rem; top:-0.5rem; width: 1.5rem; height: 1.5rem; background: var(--base); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 500; margin: 0 0 0 0; }
.benefit-info .b-title { font-weight: 500; line-height: 1.4; margin-bottom: 0.25rem; }
.benefit-info .b-loc { font-size: 0.75rem; color: var(--text-light); }
.benefits-note { text-align: center; font-size: 0.75rem; color: #555; }

/* ===== Experience ===== */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.exp-card { display: block; position: relative; border: 1px solid #eee; border-radius: 0.75rem; overflow: hidden; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.04); transition: box-shadow .2s, transform .2s; }
.exp-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.08); transform: translateY(-3px); }
.exp-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.exp-name { color: var(--text); line-height: 1.4; padding: clamp(0.5rem,1.6vw,1rem) clamp(0.75rem,1.6vw,1rem) 0; margin-bottom:0; font-size: clamp(0.9rem, 2vw, 1rem); }
.exp-price { color: var(--base); font-weight: 500; font-size:1.25rem; padding: 0 clamp(0.75rem,1.6vw,1rem) clamp(0.5rem,1.6vw,1rem); }

/* ===== Features: what you can do ===== */
.features { text-align: left; margin-bottom:4rem; }
.features-title { display: flex; align-items: center; justify-content: center; gap: 1.2rem; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.04rem; text-align: center; margin:0 auto 1rem; }
.features-title::before,
.features-title::after { content: ""; width: 2px; height: clamp(3rem,6vw,4rem); background: var(--base); border-radius: 2px; }
.features-title::before { transform: rotate(-30deg); }
.features-title::after { transform: rotate(30deg); }
.features-title-text { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
.features-title-sub { font-size: clamp(1rem, 2vw, 1.25rem); }
.features-title-main { }
.feature-grid { display: flex; gap: 1rem; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-left: clamp(1.25rem, 4vw, 2.5rem); margin:0 clamp(-2.5rem, -4vw, -1.25rem); padding:0 clamp(1.25rem, 4vw, 2.5rem); scrollbar-width: none; -ms-overflow-style: none; }
.feature-grid::-webkit-scrollbar { display: none; }
.feature-card { position: relative; flex: 0 0 calc((100% - 2rem) / 3); min-width: 16rem; scroll-snap-align: start; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1rem,2.4vw,1.5rem); border-radius: 1.25rem; background: #fff; /*border: 1px solid #efe2e2;*/ --c: var(--base); }
.feature-bg { position: absolute; right: 0.5rem; bottom: 0.5rem; font-size: clamp(5rem, 12vw, 7rem); line-height: 1; color: var(--c); opacity: 0.08; pointer-events: none; }
.feature-head { position: relative; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; margin-left:clamp(-2rem,-3vw,-1.5rem); margin-top:-0.5rem; }
.feature-num { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width:3rem; height: 3rem; border-radius: 50%; background: var(--c); color: #fff; font-size: 2rem; line-height: 1; font-weight: 500; padding:0 0 0.2rem 0; }
.feature-name { font-size: clamp(1.25rem, 3vw, 1.6rem); }
.feature-desc { position: relative; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; font-size:0.875rem; }
.feature-btn { position: relative; display: flex; align-items: center; justify-content: center; width: min(10rem, 100%); margin-top: auto; padding: 0.5rem 1.5rem; border: 1.5px solid var(--c); border-radius: 20rem; color: var(--c); font-weight: 500; transition: background .2s, color .2s; }
.feature-btn:hover { background: var(--c); color: #fff; }
.feature-btn .material-symbols-outlined { position: absolute; right: 1rem; font-size: 1.25rem; }

/* ===== Footer ===== */
footer { background: var(--base); color: #fffc; padding: clamp(1.25rem,4vw,2.5rem) 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; padding-top:0; }
.footer-inner .tel-link { color: #fffc; }
.footer-brand .fb-title { /*font-family: 'Zen Old Mincho', serif;*/ font-size:1.5rem; color: #fff; font-weight: 500; letter-spacing: 0; display: flex; align-items: center; gap: 0; }
.footer-brand .fb-title .do-circle { display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border: 2px solid #fff; color: #fff; border-radius: 50%; font-size: 1.5rem; margin: 0 0 0 0.15rem; }
.footer-brand p { line-height: 1.8; margin-bottom:1rem; }
.footer-links { display: flex; flex-direction: column; margin-bottom:1rem; }
.footer-links a { font-size:0.8125rem; }
.footer-links a::before { content: "・"; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden; }
.footer-social a img { width: 2rem; height: 2rem; object-fit: contain; }

/* Responsive */

@media (max-width: 900px) {
  .sec-desc { margin-bottom: 0.75rem; }
  .slide-nav { bottom:3rem;}
  .link-all { margin-bottom: 0.75rem; }
  .benefits { padding: 0.75rem; margin-left:-0.5rem; margin-right:-0.5rem; }
  .hotel-body { padding:0.5rem 0.75rem; }
  .sec-top { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); margin-left:-0.5rem; margin-right:-0.5rem; }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* Bottom capsule bar: 3 buttons joined, only outer corners rounded */
  .header-btns { top: auto; left:0.75rem; right:0.75rem; bottom:0.75rem; flex-direction: row; gap: 0; border-radius: 20rem; border:1px solid #fff; overflow: hidden; box-shadow:0 1rem 0.5rem -0.75rem rgba(0,0,0,0.05); padding:0 1rem; background:var(--base); }
  .header-btns .btn { flex: 1; width: auto; height: auto; padding: 0.5rem; border-radius: 0; box-shadow: none; border:none; }
  .header-btns .btn + .btn { border-left: 1px solid rgba(255,255,255,.3); }
  .header-btns .btn .material-symbols-outlined { margin-top:0;}
  footer { padding-bottom: 7rem; }
}
@media (max-width: 560px) {
  .br-sp { display: inline; }
  /* ピン留め横スクロール（JSでトラック高さを設定） */
  .features { margin-bottom: 3.5rem; }
  .feature-grid { display: flex; max-width: none; margin: 0 -1.25rem; padding:0 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: clamp(1.25rem,4vw,2.5rem); -webkit-overflow-scrolling: touch; }
  .feature-card { flex: 0 0 60%; scroll-snap-align: center; min-width: clamp(13rem,60vw,16rem); }
  .benefit-thumb { margin: 0 0 0.25rem; aspect-ratio:3/2;}
  .benefit-thumb img { width: 100%; height:100%; object-fit: cover; }
  .benefit-item { padding: 0.75rem; flex-direction: column; align-items: flex-start; text-align: left; }
  /* b-loc を benefit-item の子に昇格させ、サムネイルに重ねてバッジ化 */
  .benefit-info { display: contents; }
  .benefit-info .b-loc { order: 0; align-self: flex-start; position: relative; z-index: 2; margin: -2.5rem 0 0 0.5rem; background: rgba(60,50,40,.82); color: #fff; font-weight: 500; font-size: 0.75rem; line-height: 1.5; padding: 0.25rem 0.75rem; border-radius: 2rem; }
  .benefit-info .b-title { order: 1; margin-top: 1rem; }
  .search-head { left:1rem; }
  .search-box { padding: 1.5rem 1rem 1rem; margin:0 -0.5rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-tab { flex-direction: column; gap: 0.25rem; }
}
