:root {
  --main: #2a7abf;
  --light: #f4f8fb;
  --dark: #1f4e79;
  --white: #ffffff;
  --gray: #666;
  --border: #ddd;
  --letter:#333;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: var(--letter);
  padding-top: 90px;
}

section {
  padding: 40px 20px;
}

h1, h2, h3 {
  margin-bottom: 25px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  height: 90px;
  padding: 5px 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.site-name {
  font-size: 20px;
  font-weight: bold;
}

.address {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.tel {
  font-size: 18px;
  color: var(--main);
  font-weight: bold;
}

.tel-btn {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.tel-btn:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: -1;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 42px;
}

.btn-tel-hero {
  display: inline-block;
  background: var(--main);
  color: var(--white);
  padding: 20px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
  margin-top: 25px;
}

.btn-tel-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.trust, .hero-note {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  font-size: 16px;
  color: var(--white);
}

.news {
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.news h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.news-list li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.news-date {
  font-weight: bold;
  color: var(--main);
  min-width: 110px;
}

.news-text {
  flex: 1;
}

.features{
  background:var(--white);
  text-align:center;
}

.feature-list1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature1 {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-list{
  display:flex;
  justify-content:space-around;
  margin-top:30px;
}

.feature {
  width: 30%;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.fee {
  background: var(--white);
  text-align: center;
}

.fee h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.fee-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
}

.fee-table th,
.fee-table td {
  border: 1px solid var(--border);
}

.fee-table th {
  background: var(--main);
  color: var(--white);
}

.note1 {
  margin-top: 15px;
  font-size: 14px;
  color: var(--gray);
}

.time {
  background: var(--light);
  text-align: center;
  overflow-x: auto;
}

.time h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.time-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

.time-table th,
.time-table td {
  border: 1px solid var(--border);
}

.time-table th {
  background: var(--main);
  color: var(--white);
}

.note2 {
  margin-top: 15px;
  font-size: 14px;
  color: var(--gray);
}

.access {
  text-align: center;
}

.access h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.access p {
  margin-bottom: 120px;
}

.map iframe {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .trust {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 22px;
  }

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

  .tel {
    margin-top: 10px;
  }

  .feature-list1 {
    grid-template-columns: 1fr;
  }

  .feature-list {
    flex-direction: column;
  }

  .feature {
    width: 100%;
    margin-bottom: 30px;
  }

}