:root {
  --theme: #fead00;
  --theme-dark: #a96d00;
  --theme-deep: #4d3100;
  --theme-light: #fff8dc;
  --theme-soft: #fff0b8;
  --theme-accent: #ffc94d;
  --theme-hover: #d88900;
  --theme-border: rgba(254, 173, 0, .28);
  --header-bg: #6b4300;
  --header-bg-2: #8d5b00;
  --text-main: #2c2517;
  --text-muted: #6c5c3a;
  --on-theme: #2c1c00;
  --on-header: #fff8dc;
  --on-dark: #fff7df;
  --white: #ffffff;
  --shadow-soft: 0 18px 42px rgba(112, 72, 0, .16);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; overflow-y: auto; }
body { background: var(--theme-light); color: var(--text-main); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }
img { max-width: 100%; }
.container, .section-inner, .header-inner, .footer-inner { width: min(1280px, calc(100% - 80px)); margin-left: auto; margin-right: auto; }
@media (min-width: 1440px) { .container, .section-inner, .header-inner, .footer-inner { width: min(1360px, calc(100% - 120px)); } }
@media (max-width: 767px) { .container, .section-inner, .header-inner, .footer-inner { width: min(100% - 32px, 1280px); } }
.site-header { position: sticky; top: 0; width: 100%; z-index: 9999; background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-2) 100%); color: var(--on-header); box-shadow: var(--shadow-soft); overflow: visible; }
.header-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; overflow: visible; }
.site-logo { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; overflow: visible; }
.site-logo img { display: block; width: auto; height: auto; max-width: 190px; max-height: 72px; object-fit: contain; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 18px; }
.main-nav a { color: var(--on-header); text-decoration: none; white-space: nowrap; font-weight: 700; font-size: 14px; padding: 10px 0; border-bottom: 2px solid transparent; }
.main-nav a.active, .main-nav a:hover { color: #ffffff; border-bottom: 2px solid var(--theme-accent); }
.main-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 20px; background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme) 48%, var(--theme-dark) 100%); color: var(--on-theme); border-radius: 999px; box-shadow: var(--shadow-soft); text-decoration: none; white-space: nowrap; font-weight: 900; border: 1px solid rgba(255,255,255,.45); }
.mobile-menu-toggle { display: none; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.14); border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.mobile-menu-toggle span { width: 22px; height: 2px; background: var(--on-header); border-radius: 8px; }
.section { padding: 54px 0; }
.section-title { max-width: 880px; margin: 0 auto 30px; text-align: center; }
.section-title .eyebrow, .eyebrow { display: inline-flex; align-items: center; border-radius: 999px; padding: 9px 15px; background: var(--white); color: var(--theme-dark); border: 1px solid var(--theme-border); font-weight: 800; margin-bottom: 14px; }
.section-title h1, .section-title h2 { margin: 0 0 14px; color: var(--theme-dark); font-size: clamp(32px, 4.5vw, 58px); line-height: 1.1; }
.section-title h2 { font-size: clamp(28px, 3.2vw, 44px); }
.section-title p, .lead { font-size: 18px; line-height: 1.85; color: var(--text-muted); }
.banner-section { padding: 36px 0 24px; }
.banner-carousel { position: relative; width: 100%; border-radius: 28px; overflow: hidden; background: var(--theme-soft); box-shadow: var(--shadow-soft); border: 1px solid var(--theme-border); }
.banner-slide { display: none; }
.banner-slide.active { display: flex; align-items: center; justify-content: center; }
.banner-slide img { display: block; width: 100%; height: auto; object-fit: contain; }
.banner-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); background: rgba(77,49,0,.48); color: #fff; font-size: 34px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.banner-prev { left: 18px; }
.banner-next { right: 18px; }
.banner-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 10px; }
.banner-dots button { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.52); cursor: pointer; }
.banner-dots button.active { background: var(--theme); width: 28px; border-radius: 999px; }
.intro-card { background: var(--white); border: 1px solid var(--theme-border); box-shadow: var(--shadow-soft); border-radius: 28px; padding: 32px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.intro-card h2 { color: var(--theme-dark); margin: 0 0 12px; font-size: 28px; }
.intro-card p { line-height: 1.8; color: var(--text-muted); margin: 0; }
.category-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-pills a { border-radius: 999px; padding: 10px 16px; text-decoration: none; background: var(--theme-soft); color: var(--theme-dark); border: 1px solid var(--theme-border); font-weight: 800; }
.category-pills a:hover { background: var(--theme); color: var(--on-theme); }
.card, .zone-card, .info-card, .feature-card, .category-card, .faq-item, .notice, .visual-card, .content-card, .feedback-card { background: var(--white); color: var(--text-main); border: 1px solid var(--theme-border); box-shadow: var(--shadow-soft); border-radius: 24px; min-height: auto; height: auto; padding: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.category-card { display: flex; flex-direction: column; gap: 14px; }
.category-card h2, .category-card h3, .feature-card h2, .feature-card h3, .content-card h2, .content-card h3, .faq-item h2, .faq-item h3 { color: var(--theme-dark); margin: 0 0 10px; }
.category-card p, .feature-card p, .content-card p, .faq-item p, .notice p, .feedback-card p, li { color: var(--text-muted); line-height: 1.75; }
.category-card a, .text-link { color: var(--theme-dark); font-weight: 900; text-decoration: none; }
.media-box, .banner-media, .hero-visual, .app-visual, .card-media { display: flex; align-items: center; justify-content: center; overflow: visible; }
.media-box img, .banner-media img, .hero-visual img, .app-visual img, .card-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.card-media { min-height: 150px; background: var(--theme-soft); border-radius: 20px; padding: 16px; }
.card-media img { max-height: 150px; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.78fr); gap: 34px; align-items: center; }
.split.reverse { grid-template-columns: minmax(360px,.78fr) minmax(0,1fr); }
.split-text h2 { color: var(--theme-dark); font-size: clamp(28px,3vw,42px); margin: 0 0 16px; }
.split-text p { line-height: 1.85; color: var(--text-muted); }
.visual-card { min-height: 320px; display: flex; align-items: center; justify-content: center; }
.visual-card img { max-height: 280px; object-fit: contain; }
.page-hero { padding: 64px 0 34px; background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-soft) 100%); }
.page-hero-wrap { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); gap: 34px; align-items: center; }
.page-hero h1 { color: var(--theme-dark); font-size: clamp(38px,4.8vw,64px); line-height: 1.08; margin: 0 0 18px; }
.page-hero p { color: var(--text-muted); font-size: 18px; line-height: 1.82; }
.page-hero .visual-card { min-height: 300px; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; padding: 0; list-style: none; }
.service-list li { background: var(--theme-soft); border: 1px solid var(--theme-border); border-radius: 18px; padding: 16px; }
.notice { background: linear-gradient(180deg, var(--white) 0%, var(--theme-soft) 100%); }
.notice h2 { color: var(--theme-dark); margin-top: 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a, .tag, .badge, .category-pill { border-radius: 999px; padding: 8px 14px; display: inline-flex; width: auto; max-width: max-content; background: var(--white); border: 1px solid var(--theme-border); color: var(--theme-dark); text-decoration: none; font-weight: 800; }
.footer { background: var(--theme-deep); color: var(--on-dark); padding: 54px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.footer-brand img { max-width: 180px; max-height: 68px; object-fit: contain; }
.footer p { color: rgba(255,247,223,.82); line-height: 1.75; }
.footer h2 { color: #fff; font-size: 18px; margin: 0 0 14px; }
.footer a { color: var(--on-dark); text-decoration: none; display: block; margin: 10px 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-badges span { border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 8px 12px; }
.footer-note { width: min(1280px, calc(100% - 80px)); margin: 28px auto 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; }
.mobile-drawer { position: fixed; top: 0; left: 0; width: 82%; max-width: 320px; height: 100vh; transform: translateX(-100%); transition: transform .28s ease; z-index: 10001; background: var(--header-bg); color: var(--on-header); padding: 20px; box-shadow: 18px 0 42px rgba(0,0,0,.22); }
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay { position: fixed; inset: 0; opacity: 0; visibility: hidden; z-index: 10000; background: rgba(44,28,0,.54); transition: opacity .28s ease, visibility .28s ease; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.drawer-logo img { max-width: 150px; max-height: 56px; object-fit: contain; }
.drawer-close { border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.12); color: var(--on-header); border-radius: 12px; width: 40px; height: 40px; font-size: 28px; }
.drawer-nav a { display: block; padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; font-weight: 800; }
.drawer-nav a.active { color: var(--theme-accent); }
.drawer-login { margin-top: 18px; }
@media (max-width: 1100px) { .main-nav { gap: 12px; } .main-nav a { font-size: 13px; } .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 1023px) { .header-inner { width: min(100% - 28px, 1280px); min-height: 68px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; } .mobile-menu-toggle { display: inline-flex; width: 44px; height: 44px; } .main-nav { display: none; } .site-logo { justify-self: center; } .site-logo img { max-width: min(150px, 42vw); max-height: 56px; } .header-actions { justify-self: end; } .header-actions .main-btn { white-space: nowrap; padding: 10px 16px; } .intro-card, .page-hero-wrap, .split, .split.reverse { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .section { padding: 40px 0; } .banner-section { padding: 22px 0 14px; } .banner-carousel { border-radius: 18px; } .banner-arrow { width: 36px; height: 36px; font-size: 24px; } .banner-prev { left: 8px; } .banner-next { right: 8px; } .grid-4, .grid-2, .service-list { grid-template-columns: 1fr; } .intro-card, .card, .zone-card, .info-card, .feature-card, .category-card, .faq-item, .notice, .visual-card, .content-card, .feedback-card { padding: 22px; border-radius: 20px; } .footer-inner { grid-template-columns: 1fr; } .footer-note { width: min(100% - 32px, 1280px); } }
@media (max-width: 390px) { .header-inner { width: min(100% - 20px, 1280px); grid-template-columns: 44px minmax(0, 1fr) auto; gap: 8px; } .site-logo img { max-width: min(120px, 36vw); max-height: 48px; } .header-actions .main-btn { padding: 8px 12px; font-size: 13px; } }
