/* ========================================
RESET
======================================== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:
"Hiragino Sans",
"Hiragino Kaku Gothic ProN",
sans-serif;
background:#f5f5f5;
color:#111;
line-height:1.7;
}
img{
max-width:100%;
height:auto;
display:block;
}
a{
text-decoration:none;
color:inherit;
}
ul{
list-style:none;
}
/* ========================================
LAYOUT
======================================== */
.lp-inner{
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}
.kenkaku-section{
position:relative;
padding:100px 0;
}
@media(max-width:768px){
.kenkaku-section{
padding:70px 0;
}
}
/* ========================================
SECTION TITLE
======================================== */
.section-heading{
margin-bottom:60px;
}
.section-heading h2,
.kenkaku-section h2{
font-size:48px;
line-height:1.3;
font-weight:800;
margin-bottom:18px;
letter-spacing:.02em;
}
.section-heading p{
color:#666;
font-size:16px;
line-height:1.9;
max-width:700px;
}
@media(max-width:768px){
.section-heading{
margin-bottom:40px;
}
.section-heading h2,
.kenkaku-section h2{
font-size:34px;
}
}
/* ========================================
GRID
======================================== */
.kenkaku-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
@media(max-width:768px){
.kenkaku-grid{
grid-template-columns:1fr;
gap:20px;
}
}
/* ========================================
CARD
======================================== */
.kenkaku-card{
background:#fff;
border-radius:24px;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;
}
.kenkaku-card:hover{
transform:translateY(-5px);
}
.kenkaku-card h3{
font-size:22px;
margin-bottom:14px;
line-height:1.4;
}
.kenkaku-card p{
color:#666;
line-height:1.8;
}
/* ========================================
BUTTON
======================================== */
.kenkaku-btn,
.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:220px;
height:60px;
padding:0 32px;
border-radius:999px;
background:#111;
color:#fff;
font-size:15px;
font-weight:700;
transition:.3s;
}
.kenkaku-btn:hover,
.btn-primary:hover{
transform:translateY(-3px);
opacity:.92;
}
.kenkaku-btn.line{
background:#06C755;
}
/* ========================================
HEADER
======================================== */
.site-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
}
.site-header-inner{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}
.site-logo a{
display:flex;
align-items:center;
gap:14px;
}
.logo-mark{
width:52px;
height:52px;
border-radius:14px;
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:700;
}
.logo-text{
display:flex;
flex-direction:column;
line-height:1.1;
}
.logo-text strong{
font-size:20px;
}
.logo-text small{
font-size:11px;
color:#777;
letter-spacing:.15em;
text-transform:uppercase;
}
.site-nav{
display:flex;
align-items:center;
gap:30px;
}
.site-nav a{
font-size:15px;
font-weight:600;
}
@media(max-width:768px){
.site-header-inner{
height:70px;
}
.site-nav{
display:none;
}
}

/* ========================================
PAGE CONTENT
======================================== */
.entry-content{font-size:16px;line-height:1.9;color:#333;}
.entry-content h2{font-size:34px;margin:0 0 24px;line-height:1.35;}
.entry-content h3{font-size:22px;margin:36px 0 14px;line-height:1.45;}
.entry-content p{margin:0 0 18px;}
.entry-content ul{list-style:disc;padding-left:1.4em;margin:0 0 22px;}
.entry-content table{width:100%;border-collapse:collapse;margin:24px 0;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.04);}
.entry-content th,.entry-content td{border:1px solid #eee;padding:16px;text-align:left;vertical-align:top;}
.entry-content th{width:28%;background:#f7f7f7;font-weight:700;}
@media(max-width:768px){.entry-content h2{font-size:28px}.entry-content table,.entry-content tbody,.entry-content tr,.entry-content th,.entry-content td{display:block;width:100%;}.entry-content th{border-bottom:none;}}
