
:root{
  --text:#202124;
  --muted:#6b7280;
  --border:#dfe1e5;
  --accent:#1a73e8;
  --accent-hover:#1765cc;
  --bg:#ffffff;
  --panel:#f8fafc;
  --danger:#b3261e;
  --shadow:0 1px 6px rgba(32,33,36,.18);
}
*{box-sizing:border-box}
html{background:var(--bg)}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans JP","Yu Gothic UI","Meiryo",sans-serif;
  min-height:100vh;
}
a{color:inherit}
.site-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.main{
  flex:1;
  width:100%;
}
.search-page{
  min-height:calc(100vh - 72px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 20px 44px;
}
.search-card{
  width:min(760px,100%);
  text-align:center;
  transform:translateY(-3vh);
}
.logo{
  width:min(470px,78vw);
  height:auto;
  display:block;
  margin:0 auto 20px;
}
.search-title{
  margin:0 0 22px;
  font-size:clamp(22px,4vw,34px);
  line-height:1.35;
  font-weight:700;
  letter-spacing:.01em;
}
.search-wrap{
  position:relative;
  width:min(680px,100%);
  margin:0 auto;
}
.search-input{
  width:100%;
  height:68px;
  border:1px solid var(--border);
  border-radius:34px;
  padding:0 62px 0 28px;
  font-size:clamp(20px,3.5vw,26px);
  outline:none;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  transition:.18s ease;
}
.search-input:hover,.search-input:focus{
  box-shadow:var(--shadow);
  border-color:transparent;
}
.search-icon{
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
  opacity:.55;
  pointer-events:none;
}
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  border:0;
  border-radius:999px;
  background:var(--accent);
  color:white;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  padding:0 28px;
  text-decoration:none;
}
.primary-btn:hover{background:var(--accent-hover)}
.search-btn{margin-top:22px}
.note{
  margin:18px auto 0;
  max-width:620px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.error{
  min-height:24px;
  margin-top:10px;
  color:var(--danger);
  font-size:14px;
}
.footer{
  min-height:72px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
  padding:18px 20px;
}
.footer a{text-decoration:underline;text-underline-offset:3px}
.content-page{
  width:min(760px,100%);
  margin:0 auto;
  padding:36px 20px 56px;
}
.top-link{
  display:inline-block;
  margin-bottom:22px;
  font-size:14px;
  text-decoration:underline;
  text-underline-offset:4px;
}
.product-card{
  border:1px solid var(--border);
  border-radius:26px;
  padding:22px;
}
.product-image{
  aspect-ratio:4/3;
  width:100%;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--panel);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
}
.product-image strong{font-size:clamp(34px,7vw,56px);letter-spacing:-.02em}
.product-image span{display:block;margin-top:3px;color:var(--muted)}
.pr{margin:20px 0 8px;font-size:13px;font-weight:700}
.product-title{margin:0;font-size:clamp(28px,5vw,40px);line-height:1.2}
.product-desc{margin:14px 0 0;color:var(--muted);line-height:1.8}
.product-actions{margin-top:26px}
.product-actions .primary-btn{width:100%}
.product-disclaimer{margin-top:14px;color:var(--muted);font-size:12px;line-height:1.7}
.policy h1{font-size:32px;margin:0 0 8px}
.policy .effective{color:var(--muted);font-size:13px;margin-bottom:28px}
.policy h2{font-size:19px;margin:30px 0 10px}
.policy p,.policy li{line-height:1.9;color:#374151}
.policy ul{padding-left:1.25rem}
.policy .notice{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px 18px;
  font-size:13px;
  line-height:1.8;
  color:var(--muted);
}
@media(max-width:560px){
  .search-page{padding:20px 18px 36px}
  .search-card{transform:translateY(-1vh)}
  .logo{width:min(360px,82vw);margin-bottom:18px}
  .search-title{margin-bottom:18px}
  .search-input{height:62px;border-radius:31px;padding-left:22px;padding-right:54px}
  .search-icon{right:18px;font-size:25px}
  .search-btn{width:56%;min-width:148px}
  .content-page{padding:24px 16px 44px}
  .product-card{padding:16px}
}
