:root { --navy:       #2a5fa8; --navy-dark:  #1b4a87;
--navy-mid:   #3a72c0;
--navy-light: #e8f2fb; --white: #ffffff;
--gray-50:  #f5f8fd; --gray-100: #eaf1fb; --gray-200: #cdddef;
--gray-400: #7e9dbf;
--gray-600: #4e6178;
--gray-800: #253148; --bright-blue:      #1976d2;
--bright-blue-hover:#1565c0;
--bright-blue-glow: rgba(25,118,210,0.45); --warm-red:         #e05252;
--warm-red-hover:   #c94444;
--warm-red-glow:    rgba(224,82,82,0.45);
--line-green: #06C755;
--font-sans:  'Noto Sans JP', sans-serif;
--font-serif: 'Noto Serif JP', serif;
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--shadow-sm: 0 2px 8px rgba(37,99,168,0.08);
--shadow-md: 0 4px 24px rgba(37,99,168,0.14);
--shadow-lg: 0 8px 40px rgba(37,99,168,0.18);
--shadow-blue: 0 8px 30px rgba(25,118,210,0.5);
--transition: 0.25s ease;
--container: 1100px;
--section-pad: 80px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.sp-only { display: none; } .section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--bright-blue); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(22px,3vw,32px); font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-desc { font-size: 14px; color: var(--gray-600); line-height: 1.9; }
.section-title.left { text-align: left; } .section-header h2,
.section-header .section-title {
text-align: center !important;
} .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: var(--white); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white svg { width: 16px; height: 16px; } .btn-bright { background: var(--warm-red); color: var(--white) !important; border-color: var(--warm-red); position: relative; overflow: hidden; }
.btn-bright::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,0.20) 0%,transparent 60%); opacity: 0; transition: opacity var(--transition); }
.btn-bright:hover { background: var(--warm-red-hover); border-color: var(--warm-red-hover); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(224,82,82,0.5); }
.btn-bright:hover::before { opacity: 1; } .btn-line { background: var(--line-green); color: var(--white); border-color: var(--line-green); font-size: 15px; padding: 16px 40px; border-radius: var(--radius-md); flex-shrink: 0; }
.btn-line:hover { filter: brightness(1.08); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(6,199,85,0.4); } .promo-video-section { background: var(--white); }
.promo-video-wrap { max-width: 860px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.promo-video { width: 100%; display: block; background: #000; } .cert-modal { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.7); align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.cert-modal.open { display: flex; }
.cert-modal-inner { position: relative; max-width: 480px; width: 90%; }
.cert-modal-close { position: absolute; top: -16px; right: -16px; width: 36px; height: 36px; background: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--gray-600); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; transition: all var(--transition); z-index: 1; }
.cert-modal-close:hover { background: var(--gray-100); color: var(--navy); transform: scale(1.1); }
.cert-modal-img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.4); } .phone-modal { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.55); align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.phone-modal.open { display: flex; }
.phone-modal-inner { background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; position: relative; max-width: 380px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.phone-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--gray-400); transition: color var(--transition); }
.phone-modal-close:hover { color: var(--navy); }
.phone-modal-label { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; letter-spacing: 0.05em; }
.phone-modal-number { display: block; font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; margin-bottom: 12px; transition: color var(--transition); }
.phone-modal-number:hover { color: var(--bright-blue); }
.phone-modal-hours { font-size: 12px; color: var(--gray-400); letter-spacing: 0.05em; } .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo a { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.header-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.header-logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-main { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; line-height: 1; white-space: nowrap; }
.logo-sub { font-size: 10px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.05em; white-space: nowrap; }
.header-nav ul { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.header-nav a { font-size: 12px; font-weight: 500; color: var(--gray-600); letter-spacing: 0.02em; transition: color var(--transition); position: relative; white-space: nowrap; }
.header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--navy); transition: width var(--transition); }
.header-nav a:hover { color: var(--navy); }
.header-nav a:hover::after { width: 100%; }
.nav-cta { background: var(--warm-red) !important; color: var(--white) !important; padding: 9px 20px; border-radius: var(--radius-sm); font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--warm-red-hover) !important; transform: translateY(-2px); box-shadow: 0 4px 16px var(--warm-red-glow) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; } .hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }
@media (max-width: 768px) { .hero-bg-video { display: none; } } .hero-overlay { z-index: 2; }  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,74,122,0.78) 0%, rgba(37,99,168,0.65) 55%, rgba(53,120,192,0.55) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 80px; max-width: 750px; }
.hero-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; color: rgba(255,255,255,0.75); text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(28px,4vw,50px); font-weight: 700; color: var(--white); line-height: 1.5; margin-bottom: 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero-desc { font-size: clamp(14px,1.5vw,16px); color: rgba(255,255,255,0.92); line-height: 1.9; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 32px; padding: 24px 32px; background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.38); border-radius: var(--radius-md); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); width: fit-content; }
.trust-item { display: flex; flex-direction: column; gap: 6px; align-items: center !important; text-align: center !important; }
.trust-num, .trust-label { text-align: center !important; width: 100%; }
.trust-num { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--white); line-height: 1; text-shadow: 0 1px 6px rgba(0,0,0,0.3); white-space: nowrap; }
.trust-num small { font-size: 14px; font-weight: 400; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.92); letter-spacing: 0.05em; font-weight: 500; }
.trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.45); }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; pointer-events: none; }
.hero-scroll-hint span { font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom,rgba(255,255,255,0.4),transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3}50%{opacity:1} } .topics-ticker { background: var(--navy); color: var(--white); display: flex; align-items: stretch; overflow: hidden; height: 48px; }
.ticker-label { background: var(--bright-blue); padding: 0 20px; display: flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; flex-shrink: 0; color: var(--white); }
.ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-inner { display: flex; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
.ticker-inner span { font-size: 13px; color: rgba(255,255,255,0.88); padding: 0 60px 0 0; }
@keyframes tickerScroll { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} } .recommended { background: var(--gray-50); }
.rec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rec-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px 24px; transition: all var(--transition); }
.rec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.rec-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--navy-light); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.rec-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.rec-card p { font-size: 13px; color: var(--gray-600); line-height: 1.8; } .line-cta { background: var(--navy); padding: 60px 0; }
.line-inner { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); padding: 40px 48px; display: flex; flex-direction: column; gap: 20px; }
.line-header { display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; } .line-cta h2,
.line-header h2 {
font-family: var(--font-serif) !important;
font-size: clamp(20px,2.5vw,28px) !important;
font-weight: 700 !important;
color: #ffffff !important;
background: rgba(255,255,255,0.18) !important;
background-color: rgba(255,255,255,0.18) !important;
border: 2px solid rgba(255,255,255,0.5) !important;
border-radius: var(--radius-sm) !important;
padding: 14px 24px !important;
margin: 0 !important;
box-shadow: none !important;
line-height: 1.4 !important;
letter-spacing: 0.02em !important;
text-align: center !important;
width: 100% !important;
}
.line-cta h2::before,
.line-cta h2::after,
.line-header h2::before,
.line-header h2::after { display: none !important; content: none !important; }
.line-desc { font-size: 15px; color: #ffffff !important; line-height: 1.9; margin: 0; } .line-inner-pc {
display: grid;
grid-template-columns: 1fr auto;
gap: 40px;
align-items: center;
}
.line-left { display: flex; flex-direction: column; gap: 8px; }
.line-right { display: flex; align-items: center; }
.line-icon-wrap { flex-shrink: 0; }
.line-logo-box { width: 64px; height: 64px; background: var(--line-green); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: Arial,Helvetica,sans-serif; font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; box-shadow: 0 4px 16px rgba(6,199,85,0.35); }
.line-text { flex: 1; }  .line-step-add { min-width: 120px; }
.line-step-add .line-add-btn img { height: 44px; width: auto; display: block; }
.line-steps { display: flex; align-items: stretch; gap: 12px; margin-top: 8px; justify-content: center; }
.line-step {
display: flex; flex-direction: column; align-items: center; gap: 10px;
text-align: center; min-width: 110px; padding: 18px 14px;
background: rgba(255,255,255,0.15);
border: 1.5px solid rgba(255,255,255,0.35);
border-radius: var(--radius-md);
backdrop-filter: blur(4px);
}
.line-step-label {
font-size: 13px; font-weight: 700; color: #ffffff; line-height: 1.6;
letter-spacing: 0.02em;
}
.step-num {
width: 40px; height: 40px;
background: #ffffff;
color: var(--navy);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 18px; font-weight: 900;
box-shadow: 0 2px 8px rgba(0,0,0,0.18);
flex-shrink: 0;
}
.line-arrow {
font-size: 22px; color: rgba(255,255,255,0.80);
align-self: center; font-weight: 700; flex-shrink: 0;
} .features { background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 24px; transition: all var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--navy),#64b5f6); transform: scaleX(0); transition: transform var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 44px; height: 44px; color: var(--navy); margin-bottom: 18px; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.6; }
.feature-card p { font-size: 13px; color: var(--gray-600); line-height: 1.8; } .works { background: var(--white); }
.works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); background: var(--white); transition: all var(--transition); display: block; color: inherit; text-decoration: none; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.work-img { position: relative; height: 210px; overflow: hidden; }
.work-img-ph { width: 100%; height: 100%; position: relative; }
.work-img-ph         { background: linear-gradient(135deg,#c8d8ea 0%,#e8eef6 100%); }
.work-img-ph.img-waterproof { background: linear-gradient(135deg,#b8cfe8,#dde8f5); }
.work-img-ph.img-leak       { background: linear-gradient(135deg,#c0d4e8,#d8e8f4); }
.work-img-ph.img-seal       { background: linear-gradient(135deg,#ccdaeb,#e0ecf6); }
.work-img-ph.img-roof       { background: linear-gradient(135deg,#b4cce0,#d4e4f0); }
.work-img-ph.img-full       { background: linear-gradient(135deg,#a8c4de,#c8dcee); }
.work-img-ph::after { content: 'BEFORE / AFTER'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: rgba(37,99,168,0.3); }
.work-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-tag { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 2px; }
.work-body { padding: 20px; }
.work-location { font-size: 11px; color: var(--gray-400); letter-spacing: 0.05em; margin-bottom: 8px; }
.work-body h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.work-body p { font-size: 13px; color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }
.work-link { display: inline-block; font-size: 12px; font-weight: 700; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 1px; transition: all var(--transition); }
.work-card:hover .work-link { color: var(--warm-red); border-color: var(--warm-red); }
.works-more { text-align: center; margin-top: 48px; } .flow {
background: linear-gradient(160deg, #e8f4fd 0%, #c8e3f7 50%, #d4eafb 100%);
padding: var(--section-pad) 0;
position: relative;
}
.flow::before {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(37,99,168,0.06)'/%3E%3C/svg%3E");
pointer-events: none;
} .flow .section-label { color: var(--bright-blue); }
.flow .section-title { color: var(--navy); }
.flow .section-desc  { color: var(--gray-600); }
.flow-steps { display: flex; align-items: stretch; gap: 0; position: relative; z-index: 1; }
.flow-step {
flex: 1;
display: flex; flex-direction: column; align-items: center;
text-align: center;
padding: 36px 18px;
background: var(--white);
border: 1px solid rgba(37,99,168,0.12);
border-radius: var(--radius-md);
box-shadow: 0 4px 20px rgba(37,99,168,0.08);
transition: all var(--transition);
gap: 12px;
}
.flow-step:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(37,99,168,0.16); border-color: var(--bright-blue); }
.flow-num { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--bright-blue); }
.flow-icon { width: 48px; height: 48px; color: var(--navy); }
.flow-icon svg { width: 100%; height: 100%; }
.flow-step h3 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.5; }
.flow-step p  { font-size: 13px; color: var(--gray-600); line-height: 1.8; }
.flow-connector { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 28px; position: relative; z-index: 1; }
.flow-connector span { display: block; width: 14px; height: 14px; border-top: 2px solid var(--bright-blue); border-right: 2px solid var(--bright-blue); transform: rotate(45deg); opacity: 0.5; }
.flow-detail-link { display: flex; justify-content: center; margin-top: 40px; margin-bottom: 8px; position: relative; z-index: 1; }
.flow-detail-link .btn-detail {
display: inline-flex;
align-items: center;
gap: 10px;
background: #fff;
color: #1a2e5a;
border: 2px solid #1a2e5a;
border-radius: 50px;
padding: 14px 36px;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.03em;
text-decoration: none;
transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 16px rgba(26,46,90,0.12);
}
.flow-detail-link .btn-detail::after {
content: '→';
transition: transform 0.2s;
}
.flow-detail-link .btn-detail:hover {
background: #1a2e5a;
color: #fff;
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(26,46,90,0.22);
}
.flow-detail-link .btn-detail:hover::after { transform: translateX(4px); }
.flow-cta { margin-top: 24px; text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 36px 40px; box-shadow: 0 4px 24px rgba(37,99,168,0.1); position: relative; z-index: 1; }
.flow-cta p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; } .area { background: var(--gray-50); } .area-inner {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 32px 48px;
align-items: start;
}
.area-head { grid-column: 1 / 3; grid-row: 1; }
.area-map  { grid-column: 1; grid-row: 2; }
.area-body { grid-column: 2; grid-row: 2; }
.area-body .btn { display: block !important; width: fit-content !important; margin: 0 auto !important; text-align: center !important; }
.area-body p { font-size: 14px; color: var(--gray-600); line-height: 1.9; margin-bottom: 8px; }
.area-list { display: flex !important; flex-direction: row !important; gap: 16px; margin-bottom: 32px; }
.area-pref { flex: 1 !important; }
.area-pref { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.area-pref.main { border-left: 4px solid var(--navy); background: #f4f7fc; }
.area-pref h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; border-bottom: 1px solid var(--gray-200); padding-bottom: 8px; }
.area-pref p  { font-size: 14px; color: var(--gray-600); line-height: 2; }
.area-city-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 8px; }
.area-city-list li { font-size: 13px; color: var(--gray-600); line-height: 1.6; padding-left: 14px; position: relative; }
.area-city-list li::before { content: "・"; position: absolute; left: 0; color: var(--navy); } .area-text .section-label,
.area-text .section-title { text-align: center !important; display: block !important; } .liveshine-top-page .area-head,
.area-head {
width: 100% !important;
display: block !important;
}
.liveshine-top-page .area-head h2,
.liveshine-top-page .area-head .section-title,
.area-head h2,
.area-head .section-title {
display: block !important;
width: 100% !important;
text-align: center !important;
box-sizing: border-box !important;
float: none !important;
}
.area-head h2::before,
.area-head h2::after { display: none !important; content: none !important; }
.area-img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; } .faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--navy); transition: background var(--transition); }
.faq-q:hover { background: var(--gray-50); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.faq-q span:nth-child(2) { flex: 1; line-height: 1.5; }
.faq-toggle { font-size: 20px; font-weight: 300; color: var(--navy); transition: transform var(--transition); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px 68px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--gray-600); line-height: 1.9; } .about { background: var(--gray-50); } .liveshine-top-page .about-inner {
display: flex !important;
flex-direction: column !important;
float: none !important;
align-items: center !important;
gap: 48px !important;
max-width: 800px !important;
margin: 0 auto !important;
grid-template-columns: none !important;
}
.liveshine-top-page .about-head  {
width: 100% !important;
text-align: center !important;
order: 1 !important;
float: none !important;
}
.liveshine-top-page .about-image {
width: 100% !important;
max-width: 640px !important;
order: 2 !important;
float: none !important;
}
.liveshine-top-page .about-body  {
width: 100% !important;
order: 3 !important;
float: none !important;
}
.about-head .section-label { display: block !important; text-align: center !important; }
.about-head h2,
.about-head .section-title { text-align: center !important; } .about-head h2 {
background: var(--navy) !important;
color: #fff !important;
padding: 16px 24px !important;
border-radius: var(--radius-sm) !important;
border-left: none !important;
box-shadow: none !important;
margin: 0 !important;
} .about-head h2::before,
.about-head h2::after {
display: none !important;
content: none !important;
height: 0 !important;
width: 0 !important;
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
.about-head .section-title { margin: 0 !important; }
.about-head { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.about-image { margin-top: 0 !important; padding-top: 0 !important; }
.about-body p { font-size: 14px; color: var(--gray-600); line-height: 1.9; margin-bottom: 16px; }
.about-body .btn { display: block; width: fit-content; margin: 0 auto; text-align: center; }
.about-lead { font-size: 15px !important; color: var(--gray-800) !important; font-weight: 500; }
.about-stats { display: flex; gap: 32px; margin: 32px 0; padding: 24px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num small { font-size: 13px; font-weight: 400; }
.stat-label { font-size: 12px; color: var(--gray-400); letter-spacing: 0.05em; }
.about-img-block { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: 80px; right: 16px; background: var(--navy); padding: 14px 18px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; gap: 4px; box-shadow: 0 6px 30px rgba(0,0,0,0.25); cursor: pointer; border: none; transition: all var(--transition); } .about-body .about-badge {
position: static !important;
bottom: auto !important;
right: auto !important;
} .about-btn-row {
display: flex !important;
align-items: stretch;
justify-content: center;
gap: 12px;
flex-wrap: nowrap;
max-width: 480px;
margin-left: auto !important;
margin-right: auto !important;
}
.about-btn-row .about-btn-item {
display: inline-flex !important;
flex: 1 1 0 !important;
min-width: 0 !important;
width: auto !important;
margin: 0 !important;
justify-content: center !important;
text-align: center;
} .about-cert-btn {
flex-direction: column;
gap: 2px;
line-height: 1.3;
}
.about-cert-btn span { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); white-space: nowrap; }
.about-badge:hover { background: var(--navy-mid); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
.about-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; line-height: 1.3; color: var(--white); }
.about-badge-arrow { font-size: 10px !important; color: rgba(255,255,255,0.75) !important; margin-top: 4px; } .cta-banner { background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top:-50%; left:-10%; width:50%; height:200%; background: radial-gradient(ellipse,rgba(100,181,246,0.1) 0%,transparent 60%); pointer-events:none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; } .cta-text h2 { font-family: var(--font-serif); font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: var(--white); line-height: 1.5; margin-bottom: 12px; }
.cta-text p { font-size: 14px; color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; } .site-footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-inner { display: flex; flex-direction: row; align-items: flex-start; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { flex: 0 0 260px; } .footer-logo { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.8; white-space: nowrap; }
.footer-contact { font-style: normal; }
.footer-address { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 4px; white-space: nowrap; }
.footer-tel { display: block; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; cursor: pointer; transition: color var(--transition); }
.footer-tel:hover { color: #ffcdd2; }
.footer-hours { margin-bottom: 8px; }
.footer-hours p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.8; display: flex; gap: 10px; }
.footer-hours span { display: inline-block; min-width: 5em; color: rgba(255,255,255,0.6); font-size: 12px; }
.footer-map-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; transition: color var(--transition); }
.footer-map-link:hover { color: var(--white); border-color: var(--white); } .footer-address-map { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 4px; }
.footer-address-info { width: 100%; }
.footer-map-embed { width: 100%; max-width: 360px; } .footer-ig-nav { display: inline-flex; margin-top: 4px; } .line-add-btn { display: inline-flex; transition: opacity var(--transition), transform var(--transition); }
.line-add-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.line-add-btn img { height: 48px; width: auto; display: block; border-radius: 4px; }
.footer-social { display: flex; gap: 12px; } .social-link-ig {
display: inline-flex;
width: 48px; height: 48px;
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
border-radius: 14px;
align-items: center; justify-content: center;
transition: all var(--transition);
box-shadow: 0 4px 16px rgba(214,36,159,0.35);
flex-shrink: 0;
}
.social-link-ig:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 24px rgba(214,36,159,0.5); }
.footer-nav { display: flex; gap: 48px; margin-left: 0; flex-wrap: wrap; }
.footer-nav-col { min-width: max-content; }
.footer-nav-head { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; padding: 0 !important; margin: 0 !important; list-style: none !important; }
.footer-nav-col a { font-size: 13px; color: rgba(255,255,255,0.85); transition: color var(--transition); white-space: nowrap; }
.footer-nav-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.footer-bottom-links { display: flex; justify-content: center; gap: 24px; margin-top: 10px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color var(--transition); white-space: nowrap; }
.footer-bottom-links a:hover { color: var(--white); } @media (max-width: 960px) {
:root { --section-pad: 60px; }
.features-grid { grid-template-columns: repeat(2,1fr); }
.works-grid    { grid-template-columns: repeat(2,1fr); }
.rec-grid      { grid-template-columns: repeat(2,1fr); }
.flow-steps    { flex-wrap: wrap; gap: 12px; }
.flow-step     { flex: 0 0 calc(50% - 8px); }
.flow-connector { display: none; } .area-inner    { display: flex !important; flex-direction: column !important; gap: 24px; }
.area-content-row { flex-direction: column !important; }
.area-map  { order: 0 !important; }
.area-body { order: 0 !important; }
.area-list     { flex-direction: column !important; }
.area-pref h4  { font-size: 12px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.area-city-list { grid-template-columns: 1fr !important; }
.area-body .btn { display: block !important; text-align: center !important; margin: 0 auto !important; width: fit-content !important; }
.about-badge   { right: 0; bottom: -16px; }
.about-image   { padding-bottom: 0 !important; }
.line-inner    { padding: 32px 24px; }
.line-header   { flex-direction: row; }
.line-steps    { justify-content: center; }
.footer-map-embed   { max-width: 100%; }
.cta-inner     { flex-direction: column; text-align: center; }
.cta-actions   { justify-content: center; }
.footer-inner  { flex-direction: column; gap: 40px; }
.footer-nav    { margin-left: 0; }
} @media (max-width: 600px) {
:root { --section-pad: 48px; }
.sp-only { display: inline; }
.header-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md); padding: 12px 24px 20px; z-index: 99; }
.header-nav.open { display: block; }
.header-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
.header-nav li { width: 100%; border-bottom: 1px solid var(--gray-100); }
.header-nav a { display: block; padding: 14px 0; font-size: 14px; }
.header-nav a::after { display: none; }
.nav-cta { margin-top: 12px; display: inline-block; padding: 12px 20px !important; }
.hamburger { display: flex; }
.hero { min-height: 100svh; }
.hero-content { padding-top: 100px; padding-bottom: 100px; }
.hero-actions { flex-direction: column; }
.hero-actions .btn { justify-content: center; } .hero-title { font-size: 22px !important; }
.hero-trust { width: 100%; gap: 0; padding: 14px 16px; flex-wrap: wrap !important; justify-content: space-around; }
.trust-divider { display: none !important; }
.trust-item { align-items: center; text-align: center; width: 50% !important; flex: none !important; padding: 12px 8px; box-sizing: border-box; }
.trust-num { font-size: 20px; white-space: nowrap; }
.trust-num small { font-size: 11px; }
.trust-label { font-size: 10px; }
.hero-scroll-hint { display: none; } .features-grid { grid-template-columns: 1fr; }
.works-grid    { grid-template-columns: 1fr; }
.rec-grid      { grid-template-columns: 1fr; } .section-label,
p.section-label,
span.section-label { display: block !important; text-align: center !important; width: 100% !important; }
.section-title,
h2.section-title,
.section-title.left,
h2.section-title.left { text-align: center !important; }
.section-header { text-align: center !important; }
.section-header h2,
.section-header .section-title { text-align: center !important; } .area-text .section-label,
.area-text .section-title,
.about-head .section-label,
.about-head .section-title,
.recommended .section-label,
.features .section-label,
.works .section-label,
.flow .section-label,
.faq .section-label { text-align: center !important; display: block !important; } .section-desc { text-align: left !important; }
.promo-video-section .section-desc { text-align: left !important; }
.recommended .section-desc { text-align: left !important; }
.works .section-desc { text-align: left !important; }
.flow .section-desc  { text-align: left !important; }
.flow-step p         { text-align: left !important; } .flow .section-title { font-size: 18px !important; }
.flow-step           { flex: 0 0 100%; }
.flow-cta            { padding: 24px 20px; } .line-inner    { padding: 24px 16px; }
.line-header h2 { font-size: 18px !important; }
.line-steps    { flex-direction: column; align-items: center; }
.line-step     { width: 100%; max-width: 320px; flex-direction: row; justify-content: flex-start; align-items: center; text-align: left; padding: 16px 18px; gap: 16px; }
.line-step .step-num { flex-shrink: 0; }
.line-step-label { font-size: 13px; text-align: left; flex: 1; }
.line-arrow    { transform: rotate(90deg); } .about-stats   { gap: 20px; flex-wrap: wrap; }
.about-body .btn { display: block !important; text-align: center !important; margin: 0 auto !important; width: fit-content !important; } .flow-cta      { text-align: center !important; }
.flow-cta p    { text-align: center !important; }
.flow-cta .btn { display: block !important; width: fit-content !important; margin: 0 auto !important; } .cta-inner     { text-align: left !important; }
.cta-text      { text-align: left !important; }
.cta-text p    { text-align: left !important; }
.cta-actions   { flex-direction: column; width: 100%; }
.cta-actions .btn { justify-content: center; } .footer-nav    { flex-direction: column; gap: 32px; }
.faq-a         { padding-left: 24px; }
.phone-modal-inner  { padding: 36px 24px; }
.phone-modal-number { font-size: 28px; } .column-cats { gap: 8px; }
.column-posts { grid-template-columns: 1fr; }
} .column-cats {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-bottom: 28px;
}
.column-cat-pill {
display: inline-block;
background: #f0f4ff;
border: 1.5px solid #c5d3ee;
border-radius: 50px;
padding: 8px 18px;
font-size: 13px;
font-weight: 700;
color: #1a3a6b !important;
text-decoration: none !important;
transition: all .15s;
white-space: nowrap;
}
.column-cat-pill:hover {
background: #1a3a6b;
color: #fff !important;
border-color: #1a3a6b;
}
.column-posts {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.column-post-card {
display: flex;
flex-direction: column;
background: #fff;
border-radius: 12px;
border: 1px solid #e0e8f4;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
overflow: hidden;
text-decoration: none !important;
color: inherit !important;
transition: transform .2s, box-shadow .2s;
}
.column-post-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.column-post-thumb {
width: 100%;
aspect-ratio: 16/9;
overflow: hidden;
background: #eef2fb;
}
.column-post-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .3s;
}
.column-post-card:hover .column-post-thumb img {
transform: scale(1.04);
}
.column-post-no-thumb {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: #aab4cc;
}
.column-post-body {
padding: 14px 16px 16px;
display: flex;
flex-direction: column;
flex: 1;
}
.column-post-cat {
display: inline-block;
background: #1a3a6b;
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 2px 8px;
border-radius: 3px;
margin-bottom: 8px;
letter-spacing: .05em;
}
.column-post-title {
font-size: 14px !important;
font-weight: 700 !important;
color: #1a3a6b !important;
line-height: 1.6 !important;
margin: 0 0 8px !important;
background: none !important;
border: none !important;
padding: 0 !important;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.column-post-excerpt {
font-size: 12px;
color: #666;
line-height: 1.7;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}