:root{
  --main:#0f2747;
  --sub:#c8a24a;
  --text:#333333;
  --bg:#f8f9fb;
  --white:#ffffff;
  --border:#e5e5e5;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:
  "Yu Gothic",
  "Hiragino Kaku Gothic ProN",
  sans-serif;
  line-height:1.8;
  color:var(--text);
  background:var(--bg);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
  color:var(--main);
}

ul{
  list-style:none;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* Header */

.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1000;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo h1{
  font-size:1.8rem;
  color:var(--main);
}

.logo p{
  font-size:0.9rem;
  color:#666;
}

.header-contact{
  text-align:right;
}

.header-contact .tel{
  font-size:1.5rem;
  font-weight:bold;
  color:var(--main);
}

/* Navigation */

.gnav ul{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

.gnav li{
  margin:0 10px;
}

.gnav a{
  display:block;
  padding:15px 10px;
  font-weight:bold;
}

.gnav a:hover{
  color:var(--sub);
}

/* Hero */

.hero{
  background:#0f2747;
  color:#fff;
  text-align:center;
  padding:80px 20px;
}

.hero h2{
  font-size:2.4rem;
  margin-bottom:20px;
}

.catch-top{
  color:#f3d17b;
  font-weight:bold;
  margin-bottom:15px;
}

.lead{
  max-width:800px;
  margin:auto;
  font-size:1.1rem;
}

/* Section */

section{
  padding:70px 0;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  color:var(--main);
  font-size:2rem;
}

/* Cards */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.card h3{
  margin-bottom:10px;
  color:var(--main);
}

/* Table */

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

th,
td{
  border:1px solid var(--border);
  padding:15px;
}

th{
  background:var(--main);
  color:#fff;
}

/* Profile */

.profile{
  background:#fff;
}

.profile-box{
  text-align:center;
}

.profile-name{
  font-size:1.6rem;
  font-weight:bold;
  color:var(--main);
  margin:20px 0;
}

/* CTA */

.cta{
  background:var(--main);
  color:#fff;
  text-align:center;
}

.cta .tel{
  font-size:2rem;
  font-weight:bold;
  margin:20px 0;
}

.btn{
  display:inline-block;
  background:var(--sub);
  color:#fff;
  padding:15px 35px;
  border-radius:5px;
  font-weight:bold;
}

.btn:hover{
  opacity:.85;
}

/* Footer */

.site-footer{
  background:#1c1c1c;
  color:#fff;
  padding:50px 0 20px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}

.site-footer a{
  color:#fff;
}

.copyright{
  text-align:center;
  margin-top:30px;
}

/* Fixed Tel */

.fixed-tel{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--sub);
  z-index:9999;
}

.fixed-tel a{
  display:block;
  color:#fff;
  text-align:center;
  padding:15px;
  font-size:1.2rem;
  font-weight:bold;
}

/* Mobile */

@media(max-width:768px){

  .header-inner{
    flex-direction:column;
    text-align:center;
  }

  .header-contact{
    text-align:center;
    margin-top:15px;
  }

  .hero h2{
    font-size:1.8rem;
  }

  .footer-inner{
    flex-direction:column;
  }
  

/* =====================
Contact Form
===================== */

.contact-form{
max-width:700px;
margin:0 auto;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.contact-form p{
margin-bottom:20px;
}

.contact-form label{
display;
font-weight;
margin-bottom:8px;
color(--main);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:5px;
font-size:1rem;
}

.contact-form textarea{
min-height:180px;
resize;
}

.contact-form button{
background(--sub);
color:#fff;
border;
padding:15px 35px;
border-radius:5px;
font-size:1rem;
cursor;
}

.contact-form button{
opacity:.85;
}

}