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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fff7ed;
}

a {
  text-decoration: none;
  color: inherit;
}

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

header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d97706;
}

.logo-area {
display:flex;align-items:center;white-space:nowrap;flex-wrap:nowrap;overflow:visible;
}

.logo-image {
width:80px;height:80px;min-width:48px;object-fit:contain;margin-right:12px;flex-shrink:0;display:block;
}

.logo-text {
  display:inline-block;font-size:clamp(0.8rem,2vw,1.1rem);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav a {
  font-size: 0.95rem;
  transition: 0.3s;
}

nav a:hover {
  color: #f59e0b;
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  background: #f59e0b;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: #c2410c;
}

section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 2rem;
  color: #d97706;
  margin-bottom: 10px;
}

.section-title p {
  color: #9a6b3f;
}

.about {
  text-align: center;
  max-width: 850px;
  margin: auto;
  font-size: 1.05rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

.card-content {
  padding: 25px;
}

.card h3 {
  color: #d97706;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card ul {
  margin-top: 15px;
  padding-left: 20px;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-box h3 {
  color: #d97706;
  margin-bottom: 15px;
}

.news-list {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid #fed7aa;
}

.news-item:last-child {
  border-bottom: none;
}

.recruit {
  background: #d97706;
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 60px 20px;
}

.recruit h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.access-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.map-card {
  background: #fff7ed;
  padding: 20px;
  border-radius: 16px;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
  margin-top: 15px;
}

footer {
  background: #7c2d12;
  color: #ddd;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .services,
  .features {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  nav ul {
    gap: 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 100px 15px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }
}

.daily-schedule {
  background: #fffaf5;
}

.schedule-table-wrap {
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.schedule-table th {
  background: #f59e0b;
  color: white;
  padding: 16px;
  text-align: left;
}

.schedule-table td {
  padding: 16px;
  border-bottom: 1px solid #fed7aa;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table td:first-child {
  width: 140px;
  font-weight: bold;
  color: #d97706;
}

.schedule-table-wrap {
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.schedule-table th {
  background: #f59e0b;
  color: white;
  padding: 16px;
  text-align: left;
}

.schedule-table td {
  padding: 16px;
  border-bottom: 1px solid #fed7aa;
}

.schedule-table td:first-child {
  width: 140px;
  font-weight: bold;
  color: #d97706;
}

.manager-message {
  background: #fff7fb;
}

.manager-box {
  background: white;
  padding: 30px 40px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 2;
  overflow: hidden;
}

.manager-float-image {
  float: right;
  width: 260px;
  height: auto;
  margin: 0 0 20px 30px;
  border-radius: 20px;
}

.manager-box h3 {
  color: #c2417a;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.manager-box p {
  margin-bottom: 18px;
}

.manager-photo {
  float: right;
  margin: 0 0 20px 30px;
  text-align: center;
}

.manager-float-image {
  width: 180px;
  height: auto;
  border-radius: 20px;
  display: block;
}

.manager-name {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}
.manager-section-title {
  text-align: center;
  margin-bottom : 30px;
}
.manager-section-title h2 {
  font-size: 2rem;
  color: #c2417a;
}
.manager-section-title p {
  color: #9a6b3f;
}

@media (max-width: 768px) {
  .manager-photo,
  .manager-float-image {
    float: none !important;
  }

  .manager-photo {
    display: block;
    width: 100%;
    margin: 0 auto 25px auto;
    text-align: center;
    clear: both;
  }

  .manager-float-image {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto;
  }

  .manager-box h3 {
    clear: both;
    text-align: center;
  }
}
.staff-message-box {
  display: flex;
  gap: 40px;
  align-items: center;

  max-width: 1000px;
  margin: 0 auto;

  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.staff-image-area {
  width: 35%;
}

.staff-group-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.staff-message-text {
  width: 65%;
  line-height: 2;
}

.staff-message-text p {
  margin-bottom: 18px;
}

@media (max-width: 768px) {

  .staff-message-box {
    flex-direction: column;
    padding: 25px;
  }

  .staff-image-area,
  .staff-message-text {
    width: 100%;
  }

}
.staff-message-box .staff-image-area {
  flex: 0 0 280px;
  max-width: 280px;
}

.staff-message-box .staff-group-image {
  width: 280px !important;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}