/* =====================================================
   HOTSYSTEM - Corporate Website
   Consolidated stylesheet (index.html / askul.html / company.html)
   Mobile-first | Breakpoints: 768 / 1024 / 1200
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary:        #C62828;
  --primary-dark:   #8E1A1A;
  --primary-light:  #FCEAEA;
  --accent:         #FF8A65;
  --accent-dark:    #E64A19;
  --text:           #333333;
  --text-light:     #666666;
  --text-muted:     #999999;
  --background:     #FFFFFF;
  --section-bg:     #F8F8F8;
  --border:         #E5E5E5;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.14);
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     0.25s ease;
  --header-h:       64px;
  --max-w:          1200px;
  /* askul page brand color (content only) */
  --askul:          #111184;
  --askul-dark:     #0a0a5c;
  --askul-light:    #e8e8f5;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout utilities (shared) ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--gray { background: var(--section-bg); }

.section-hd { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-lead { margin-top: 14px; font-size: 0.925rem; color: var(--text-light); }

.sp-only { display: none; }
.sp-br   { display: none; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Buttons (shared) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 700; line-height: 1;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-askul { background: var(--askul); color: #fff; border-color: var(--askul); }
.btn-askul:hover { background: var(--askul-dark); border-color: var(--askul-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-hero-primary { background: #fff; color: var(--primary); border-color: #fff; padding: 15px 32px; font-size: 1rem; border-radius: 24px; }
.btn-hero-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-hero-outline { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.6); padding: 15px 32px; font-size: 1rem; border-radius: 24px; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.28); border-color: #fff; transform: translateY(-3px); }
.btn-cta-white { background: #fff; color: var(--primary); border-color: #fff; font-size: 1rem; padding: 15px 32px; border-radius: var(--radius-lg); }
.btn-cta-white:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--radius-lg); margin-top: 4px; }

/* ---- Header / Nav (shared structure) ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo-link { display: flex; flex-direction: column; align-items: stretch; flex-shrink: 0; gap: 2px; }
.logo-askul-tag { font-size: 0.65rem; color: #555555; font-weight: 700; letter-spacing: 0.04em; line-height: 1; text-align: right; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-fallback { align-items: center; }

.hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; padding: 0; z-index: 910; }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-list {
  display: none; flex-direction: column;
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: #fff; padding: 16px 20px 24px;
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-md); gap: 0;
}
.nav-list.is-open { display: flex; }
.nav-link { display: block; padding: 13px 4px; font-size: 0.95rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: color var(--transition), padding-left var(--transition); }
.nav-link:last-child { border-bottom: none; }
.nav-link:hover { color: var(--primary); padding-left: 8px; }
.nav-link.is-active { color: var(--primary); font-weight: 700; }
.nav-cta { margin-top: 12px; text-align: center; background: var(--primary); color: #fff !important; border-radius: var(--radius); padding: 13px; border-bottom: none; }
.nav-cta:hover { background: var(--primary-dark); padding-left: 4px; }

/* ---- Footer (shared) ---- */
.footer { background: #1c1c1c; color: rgba(255,255,255,0.75); padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { max-width: 320px; }
.footer-logo { height: 52px; width: auto; display: block; background: #fff; padding: 8px 14px; border-radius: 8px; margin-bottom: 16px; transition: opacity var(--transition); }
.footer-logo:hover { opacity: 0.9; }
.footer-logo-text { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.footer-desc { font-size: 0.85rem; line-height: 1.8; opacity: 0.7; }
.footer-heading { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-addr p { font-size: 0.85rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-addr i { color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition), padding-left var(--transition); }
.footer-nav a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom { text-align: center; padding: 16px 20px; font-size: 0.78rem; opacity: 0.45; border-top: 1px solid rgba(255,255,255,0.05); }

/* ---- Back to top (shared) ---- */
.back-top { position: fixed; bottom: 24px; right: 20px; width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity var(--transition), transform var(--transition); z-index: 800; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- Responsive (shared header/footer behavior) ---- */
@media (min-width: 768px) {
  :root { --header-h: 72px; }
  .hamburger { display: none; }
  .nav-list { display: flex !important; flex-direction: row; position: static; background: transparent; padding: 0; border: none; box-shadow: none; gap: 4px; align-items: center; }
  .nav-link { padding: 8px 12px; border-radius: var(--radius); border-bottom: none; font-size: 0.875rem; }
  .nav-link:hover { background: var(--primary-light); padding-left: 12px; }
  .nav-cta { margin-top: 0; padding: 9px 18px; }
  .nav-cta:hover { padding-left: 18px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .sp-br { display: inline; }
}
@media (min-width: 1200px) {
  .container { padding: 0 40px; }
}
@media print {
  .header, .hamburger, .hero-scroll, .back-top { display: none; }
  body { color: #000; }
}

/* =====================================================
   PAGE: HOME (index.html)  -> <body class="page-home">
   ===================================================== */
.page-home .nav-link.is-active { color: var(--primary); font-weight: 700; }

/* HERO BADGE */
.page-home .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* RESULTS（実績セクション） */
.page-home .results { background: #fff; padding-top: 48px; padding-bottom: 48px; }

/* HERO */
.page-home .hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  background: linear-gradient(145deg, #c62828 0%, #d84315 50%, #bf360c 100%);
  overflow: hidden;
}
.page-home .hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(198,40,40,0.18) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,138,101,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-home .hero-content { position: relative; z-index: 1; max-width: 780px; width: 100%; margin: 0 auto; text-align: center; }
.page-home .hero-label { display: inline-block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; color: var(--accent); border: 1px solid rgba(255,138,101,0.5); padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.page-home .hero-title { font-size: clamp(1.55rem, 4.8vw, 2.6rem); font-weight: 500; color: #fff; line-height: 1.55; margin-bottom: 18px; letter-spacing: 0.04em; }
.page-home .hero-sub { font-size: clamp(0.875rem, 2vw, 1.05rem); color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.85; }
.page-home .hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.page-home .hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.45); font-size: 1.1rem; animation: bounce 2s infinite; z-index: 1; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@media print { .page-home .hero { min-height: auto; padding: 40px 0; } }

/* GUIDE */
.page-home .guide { background: #fff; border-bottom: 1px solid var(--border); }
.page-home .guide-grid { display: grid; grid-template-columns: 1fr; }
.page-home .guide-card { display: flex; align-items: center; gap: 16px; padding: 22px 20px; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.page-home .guide-card:last-child { border-bottom: none; }
.page-home .guide-card:hover { background: var(--section-bg); }
.page-home .guide-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; }
.page-home .guide-icon--red    { background: var(--primary); }
.page-home .guide-icon--orange { background: var(--accent); }
.page-home .guide-body { flex: 1; min-width: 0; }
.page-home .guide-title { font-size: 1rem; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.page-home .guide-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.page-home .guide-arrow { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }

/* BUSINESS */
.page-home .business-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.page-home .biz-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--primary); transition: transform var(--transition), box-shadow var(--transition); }
.page-home .biz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.page-home .biz-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.page-home .biz-icon--red    { background: var(--primary-light); color: var(--primary); }
.page-home .biz-icon--orange { background: #fff5f0; color: var(--accent); }
.page-home .biz-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.page-home .biz-card > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.page-home .biz-list { margin-bottom: 28px; }
.page-home .biz-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-light); padding: 8px 0; border-bottom: 1px solid var(--border); }
.page-home .biz-list li:last-child { border-bottom: none; }
.page-home .biz-list li i { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; }

/* PROPERTY */
.page-home .prop-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.page-home .prop-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.page-home .prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.page-home .prop-img { position: relative; overflow: hidden; }
.page-home .prop-img-inner { width: 100%; height: 100%; background: linear-gradient(145deg, #f5e0e0, #eedada); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--primary); }
.page-home .prop-img-inner i { font-size: 2.8rem; opacity: 0.4; }
.page-home .prop-img-inner span { font-size: 0.8rem; opacity: 0.6; }
.page-home .prop-badge { position: absolute; top: 12px; left: 12px; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; color: #fff; }
.page-home .prop-badge--available { background: var(--primary); }
.page-home .prop-badge--soon      { background: var(--accent); }
.page-home .prop-body { padding: 20px; }
.page-home .prop-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.page-home .prop-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.page-home .prop-price-num  { font-size: 1.7rem; font-weight: 700; color: var(--primary); }
.page-home .prop-price-unit { font-size: 0.8rem; color: var(--text-light); }
.page-home .prop-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; font-size: 0.82rem; color: var(--text-light); }
.page-home .prop-specs i { color: var(--primary); margin-right: 3px; }
.page-home .prop-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.page-home .prop-tags li { background: var(--section-bg); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 0.76rem; color: var(--text-light); }
.page-home .section-more { text-align: center; margin-top: 40px; }
.page-home .section-more p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

/* PROPERTY DETAIL */
.page-home .prop-detail-list { display: grid; grid-template-columns: 1fr; gap: 32px; }
.page-home .prop-detail-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.page-home .prop-detail-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 24px 28px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: flex-start;
}
.page-home .prop-detail-name-ja { font-size: clamp(1.4rem,4vw,1.8rem); font-weight: 700; color: #fff; display: block; line-height: 1.2; margin-bottom: 4px; }
.page-home .prop-detail-name-en { font-size: 0.8rem; color: rgba(255,255,255,0.55); display: block; letter-spacing: 0.1em; }
.page-home .prop-detail-type-badge { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.page-home .prop-detail-floor { color: rgba(255,255,255,0.65); font-size: 0.76rem; margin-top: 4px; display: block; }
.page-home .prop-detail-body { padding: 28px; }
.page-home .prop-detail-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; margin-bottom: 24px; }
.page-home .prop-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; font-size: 0.88rem; }
.page-home .prop-table tr { border-bottom: 1px solid var(--border); }
.page-home .prop-table tr:last-child { border-bottom: none; }
.page-home .prop-table th { width: 110px; padding: 11px 12px; text-align: left; font-weight: 700; color: var(--primary); background: var(--primary-light); white-space: nowrap; vertical-align: top; }
.page-home .prop-table td { padding: 11px 14px; color: var(--text); line-height: 1.7; }
.page-home .prop-detail-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
.page-home .prop-detail-box { background: var(--section-bg); border-radius: var(--radius); padding: 18px; border: 1px solid var(--border); }
.page-home .prop-detail-box h4 { font-size: 0.82rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.page-home .prop-detail-box ul { list-style: none; }
.page-home .prop-detail-box li { font-size: 0.84rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 8px; }
.page-home .prop-detail-box li:last-child { border-bottom: none; }
.page-home .prop-detail-box li::before { content: '▸'; color: var(--primary); font-size: 0.65rem; flex-shrink: 0; }
.page-home .facility-list li { justify-content: space-between; }
.page-home .facility-list li::before { display: none; }
.page-home .facility-dist { color: var(--primary); font-size: 0.76rem; font-weight: 700; white-space: nowrap; }
.page-home .map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 200px; }
.page-home .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.page-home .video-wrap { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, #2a1a10 0%, #3d2015 100%); height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); gap: 10px; }
.page-home .video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.page-home .video-play { width: 48px; height: 48px; border-radius: 50%; background: rgba(198,40,40,0.6); border: 2px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; }
.page-home .video-label { font-size: 0.8rem; letter-spacing: 0.06em; }
.page-home .prop-cta-row { text-align: right; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
@media (max-width: 599px) {
  .page-home .prop-cta-row {
    align-items: stretch; /* ボタンを横幅いっぱいに広げる */
  }
  .page-home .prop-cta-row .btn {
    white-space: normal;  /* テキストの折り返しを許可 */
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 600px) { .page-home .prop-detail-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .page-home .prop-detail-body { padding: 24px 28px; } .page-home .prop-table th { width: 120px; } }
@media (min-width: 1024px) { .page-home .prop-detail-list { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* PHOTO GRID */
.page-home .prop-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; height: 280px; }
.page-home .prop-photo-main { overflow: hidden; border-radius: var(--radius); background: var(--section-bg); height: 280px; }
.page-home .prop-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-home .prop-photo-sub-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 280px; }
.page-home .prop-photo-sub { overflow: hidden; border-radius: var(--radius); background: var(--section-bg); position: relative; }
.page-home .prop-photo-sub img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-home .prop-photo-placeholder { width: 100%; height: 100%; min-height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--text-muted); font-size: 0.75rem; background: linear-gradient(145deg, #f0e8e8, #ebe0e0); }
.page-home .prop-photo-placeholder i { font-size: 1.5rem; opacity: 0.4; }

/* CAMPAIGN BANNER */
.page-home .campaign-banner { background: linear-gradient(135deg, #fff7e6 0%, #fff3dc 100%); border: 2px solid #f0c040; border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 36px; display: flex; align-items: flex-start; gap: 16px; }
.page-home .campaign-banner-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.page-home .campaign-banner-body h3 { font-size: 1rem; font-weight: 700; color: #b45309; margin-bottom: 6px; }
.page-home .campaign-banner-body p { font-size: 0.875rem; color: #92400e; line-height: 1.7; }
.page-home .campaign-banner-body strong { color: #b45309; }

/* ROOM PHOTO GALLERY */
.page-home .room-gallery { margin-bottom: 24px; }
.page-home .room-gallery-hd { font-size: 0.82rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; margin-bottom: 10px; }
.page-home .room-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.page-home .room-gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--section-bg); border: 1px solid var(--border); }
.page-home .room-gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition); }
.page-home .room-gallery-grid a:hover img { transform: scale(1.06); }
.page-home .room-gallery-note { background: var(--section-bg); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 10px 14px; margin-top: 12px; font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
@media (min-width: 600px) { .page-home .room-gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* MENTION NOTE */
.page-home .mention-note { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 12px 16px; margin-top: 14px; font-size: 0.875rem; color: var(--primary-dark); font-weight: 500; line-height: 1.6; }

/* ASKUL teaser (home) */
.page-home .askul { background: var(--background); }
.page-home .askul-features { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
.page-home .askul-feat { background: var(--section-bg); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.page-home .askul-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.page-home .askul-feat-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 18px; transition: background var(--transition), color var(--transition); }
.page-home .askul-feat:hover .askul-feat-icon { background: var(--primary); color: #fff; }
.page-home .askul-feat h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.page-home .askul-feat p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.8; }
.page-home .askul-role { text-align: center; margin-bottom: 48px; }
.page-home .askul-role-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.page-home .askul-role-lead { font-size: 0.875rem; color: var(--text-light); margin-bottom: 24px; }
.page-home .askul-role-img { max-width: 100%; width: 100%; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .page-home .askul-role-img { max-width: 720px; } }
.page-home .askul-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius-xl); padding: 40px 28px; text-align: center; color: #fff; }
.page-home .askul-cta h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700; margin-bottom: 8px; }
.page-home .askul-cta p  { font-size: 0.9rem; opacity: 0.85; margin-bottom: 24px; }

/* REASONS */
.page-home .reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.page-home .reason-card { background: #fff; border-radius: var(--radius-lg); padding: 24px 18px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.page-home .reason-card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.page-home .reason-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin: 0 auto 14px; transition: transform var(--transition); }
.page-home .reason-card:hover .reason-icon { transform: scale(1.1) rotate(-5deg); }
.page-home .reason-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.page-home .reason-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }

/* NEWS */
.page-home .news-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.page-home .news-card { background: #fff; border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary); transition: transform var(--transition), box-shadow var(--transition); }
.page-home .news-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.page-home .news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.page-home .news-meta time { font-size: 0.8rem; color: var(--text-muted); }
.page-home .news-tag { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.page-home .news-tag--property { background: var(--primary-light); color: var(--primary); }
.page-home .news-tag--askul    { background: #fff5f0; color: var(--accent-dark); }
.page-home .news-tag--info     { background: #E8F5E9; color: #2E7D32; }
.page-home .news-ttl { font-size: 0.975rem; font-weight: 700; margin-bottom: 6px; }
.page-home .news-ttl a { color: var(--text); transition: color var(--transition); }
.page-home .news-ttl a:hover { color: var(--primary); }
.page-home .news-card > p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* CONTACT */
.page-home .contact { background: var(--background); }
.page-home .contact-inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
.page-home .contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.page-home .contact-detail { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.page-home .contact-detail li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text-light); }
.page-home .contact-detail li i { color: var(--primary); width: 16px; flex-shrink: 0; margin-top: 3px; }
.page-home .contact-note { background: var(--section-bg); border-radius: var(--radius); padding: 16px 18px; }
.page-home .contact-note p { font-size: 0.85rem; color: var(--text-light); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.page-home .contact-note p:last-child { border-bottom: none; }
.page-home .contact-note p i { color: var(--primary); width: 14px; }
.page-home .contact-form { display: flex; flex-direction: column; gap: 20px; }
.page-home .form-row { display: flex; flex-direction: column; gap: 20px; }
.page-home .form-group { display: flex; flex-direction: column; gap: 6px; }
.page-home .form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 6px; }
.page-home .badge-req { font-size: 0.68rem; font-weight: 700; background: var(--primary); color: #fff; padding: 2px 6px; border-radius: 3px; line-height: 1.4; }
.page-home .form-group input, .page-home .form-group select, .page-home .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.page-home .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.page-home .form-group input:focus, .page-home .form-group select:focus, .page-home .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(198,40,40,0.12); }
.page-home .form-group input.is-error, .page-home .form-group select.is-error, .page-home .form-group textarea.is-error { border-color: #D32F2F; }
.page-home .form-group input::placeholder, .page-home .form-group textarea::placeholder { color: #bbb; }
.page-home .form-group textarea { resize: vertical; min-height: 130px; }
.page-home .form-err { font-size: 0.8rem; color: #D32F2F; min-height: 1em; }

/* TIMELINE (home) */
.page-home .timeline { position: relative; padding-left: 28px; }
.page-home .timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 2px; }
.page-home .timeline-item { position: relative; margin-bottom: 32px; }
.page-home .timeline-item:last-child { margin-bottom: 0; }
.page-home .timeline-dot { position: absolute; left: -24px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.page-home .timeline-dot--accent { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.page-home .timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; margin-bottom: 4px; }
.page-home .timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.page-home .timeline-body { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* HOME responsive */
@media (min-width: 768px) {
  .page-home .guide-grid { grid-template-columns: 1fr 1fr; }
  .page-home .guide-card { border-bottom: none; border-right: 1px solid var(--border); }
  .page-home .guide-card:last-child { border-right: none; }
  .page-home .business-grid { grid-template-columns: 1fr 1fr; }
  .page-home .prop-grid { grid-template-columns: 1fr 1fr; }
  .page-home .askul-features { grid-template-columns: repeat(2, 1fr); }
  .page-home .askul-cta { display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 28px; padding: 40px 40px; }
  .page-home .askul-cta p { margin-bottom: 0; }
  .page-home .news-grid { grid-template-columns: 1fr 1fr; }
  .page-home .contact-inner { grid-template-columns: 1fr 2fr; }
  .page-home .form-row--2col { flex-direction: row; }
  .page-home .form-row--2col .form-group { flex: 1; }
}
@media (min-width: 1024px) {
  .page-home .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .page-home .reasons-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .page-home .reason-card { padding: 32px 24px; }
  .page-home .news-grid { grid-template-columns: repeat(3, 1fr); }
  .page-home .askul-features { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   PAGE: ASKUL (askul.html)  -> <body class="page-askul">
   ===================================================== */
.page-askul .nav-link.is-active { color: var(--primary); font-weight: 700; }
.page-askul .nav-cta { background: var(--primary); }
.page-askul .nav-cta:hover { background: var(--primary-dark); }
.page-askul .btn-cta-white { color: var(--askul); }
.page-askul .btn-cta-white:hover { background: var(--askul-light); }
.page-askul .section-title::after { background: var(--askul); }

/* PAGE HERO (white, 2-col) */
.page-askul .page-hero { padding: calc(var(--header-h) + 64px) 24px 72px; background: #ffffff; border-bottom: 1px solid var(--border); }
.page-askul .page-hero-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.page-askul .page-hero-text { flex: 1; text-align: center; }
.page-askul .page-hero-badge { display: inline-block; background: var(--askul-light); border: 1px solid rgba(17,17,132,0.25); color: var(--askul); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 16px; border-radius: 20px; margin-bottom: 18px; }
.page-askul .page-hero-text h1 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
.page-askul .page-hero-text h1 em { font-style: normal; color: var(--askul); }
.page-askul .page-hero-text p { font-size: 0.975rem; color: var(--text-light); line-height: 1.85; margin-bottom: 28px; }
.page-askul .page-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.page-askul .page-hero-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 100%; max-width: 560px; }
.page-askul .page-hero-logo img { width: 100%; height: auto; }

/* FEATURES (navy theme) */
.page-askul .askul-features { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
.page-askul .askul-feat { background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.page-askul .askul-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(17,17,132,0.2); }
.page-askul .askul-feat-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--askul-light); color: var(--askul); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 18px; transition: background var(--transition), color var(--transition); }
.page-askul .askul-feat:hover .askul-feat-icon { background: var(--askul); color: #fff; }
.page-askul .askul-feat h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.page-askul .askul-feat p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.8; }

/* USECASES（利用シーン） */
.page-askul .usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.page-askul .usecase-item {
  background: #fff; border-radius: var(--radius-lg); padding: 24px 16px;
  text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.page-askul .usecase-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.page-askul .usecase-item i { font-size: 1.6rem; color: var(--askul); }
.page-askul .usecase-item span { font-size: 0.85rem; font-weight: 700; color: var(--text); }
@media (min-width: 768px) { .page-askul .usecase-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .page-askul .usecase-grid { grid-template-columns: repeat(6, 1fr); } }

/* TIMELINE (navy theme) */
.page-askul .timeline { position: relative; padding-left: 28px; }
.page-askul .timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--askul), #7b7bd0); border-radius: 2px; }
.page-askul .timeline-item { position: relative; margin-bottom: 32px; }
.page-askul .timeline-item:last-child { margin-bottom: 0; }
.page-askul .timeline-dot { position: absolute; left: -24px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--askul); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--askul); }
.page-askul .timeline-dot--accent { background: #7b7bd0; box-shadow: 0 0 0 2px #7b7bd0; }
.page-askul .timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--askul); letter-spacing: 0.05em; margin-bottom: 4px; }
.page-askul .timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.page-askul .timeline-body { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ROLE */
.page-askul .askul-role { text-align: center; margin-bottom: 48px; }
.page-askul .askul-role-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.page-askul .askul-role-lead { font-size: 0.875rem; color: var(--text-light); margin-bottom: 24px; }
.page-askul .askul-role-img { max-width: 100%; width: 100%; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .page-askul .askul-role-img { max-width: 720px; } }

/* CTA (navy theme) */
.page-askul .askul-cta { background: linear-gradient(135deg, var(--askul) 0%, var(--askul-dark) 100%); border-radius: var(--radius-xl); padding: 40px 28px; text-align: center; color: #fff; }
.page-askul .askul-cta h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 700; margin-bottom: 8px; }
.page-askul .askul-cta p  { font-size: 0.9rem; opacity: 0.85; margin-bottom: 24px; }

/* ASKUL responsive */
@media (min-width: 768px) {
  .page-askul .page-hero-logo { width: 640px; max-width: 640px; }
  .page-askul .askul-features { grid-template-columns: repeat(2, 1fr); }
  .page-askul .askul-cta { display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 28px; padding: 40px 40px; }
  .page-askul .askul-cta p { margin-bottom: 0; }
}
@media (min-width: 1024px) {
  .page-askul .askul-features { grid-template-columns: repeat(4, 1fr); }
  .page-askul .page-hero-logo { width: 640px; max-width: 640px; }
}

/* =====================================================
   PAGE: COMPANY (company.html)  -> <body class="page-company">
   ===================================================== */
.page-company .nav-link.is-active { color: var(--primary); font-weight: 700; }

/* PAGE HERO (gray, centered) */
.page-company .page-hero { padding: calc(var(--header-h) + 52px) 24px 52px; background: var(--section-bg); border-bottom: 1px solid var(--border); text-align: center; }
.page-company .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.page-company .page-hero p { font-size: 0.9rem; color: var(--text-light); }

/* COMPANY TABLE */
.page-company .company-table-wrap { max-width: 860px; margin: 0 auto; }
.page-company .company-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.page-company .company-table tr { border-bottom: 1px solid var(--border); }
.page-company .company-table tr:last-child { border-bottom: none; }
.page-company .company-table th { width: 140px; padding: 16px 14px; text-align: left; font-weight: 700; color: var(--primary); background: var(--primary-light); white-space: nowrap; vertical-align: top; }
.page-company .company-table td { padding: 16px 18px; color: var(--text); line-height: 1.75; vertical-align: top; }

/* BUSINESS CARDS */
.page-company .biz-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.page-company .biz-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--primary); }
.page-company .biz-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.page-company .biz-icon--red    { background: var(--primary-light); color: var(--primary); }
.page-company .biz-icon--orange { background: #fff5f0; color: var(--accent); }
.page-company .biz-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.page-company .biz-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.page-company .biz-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.page-company .biz-tag { background: var(--section-bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; color: var(--text-light); }

/* TIMELINE (red theme, company) */
.page-company .timeline { position: relative; padding-left: 28px; }
.page-company .timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 2px; }
.page-company .timeline-item { position: relative; margin-bottom: 32px; }
.page-company .timeline-item:last-child { margin-bottom: 0; }
.page-company .timeline-dot { position: absolute; left: -24px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary); }
.page-company .timeline-dot--accent { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.page-company .timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; margin-bottom: 4px; }
.page-company .timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.page-company .timeline-body { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* MAP */
.page-company .map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 320px; margin-top: 48px; }
.page-company .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* COMPANY responsive */
@media (min-width: 768px) {
  .page-company .biz-grid { grid-template-columns: 1fr 1fr; }
}
