/* CSS Document */




/* FEATURES */
.features-section { 
  background: var(--sky-pale); 
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 3px 3px 10px #cce3eb;
  transition: transform 0.2s;
}

.feature-card img { 
  width: 72px; 
  height: 72px; 
  object-fit: contain; 
  margin-bottom: 16px; 
}

.feature-card h3 { 
  font-size: 1rem; 
  font-weight: 800; 
  color: var(--sky); 
  margin-bottom: 10px; 
}

.feature-card p { 
  font-size: 0.85rem; 
  line-height: 1.7; 
  color: #777; 
}

/* SHINRYO */
.shinryo-section { 
  background: #eef7fc;
}

.shinryo-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px; 
}

.shinryo-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.shinryo-card img { 
  width: 100px; 
  aspect-ratio: 1/1;
  object-fit: contain; 
  flex-shrink: 0; 
}

.shinryo-card-text h3 { 
  font-size: 1.3rem; 
  font-weight: 800; 
  color: #7cc6ee; 
  margin-bottom: 8px; 
}

.shinryo-card-text p { 
  z-index: 1;
  position: relative;
}

/* HOURS */
.hours-section { 
  background: #fff;
}

.hours-table-wrap { 
  border-radius: 20px;
}

.hours-table {
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 3px 3px 10px #cce3eb;
  min-width: 400px;
  width: 50%;
}

.hours-table th {
  background: #7cc6ee;
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  font-size: 1.3rem;
}

.hours-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(168,216,234,0.3);
  text-align: center;
  font-weight: 500;
}

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

.hours-table tr:nth-child(even) td { 
  background: #eef7fc; 
}

@media (max-width: 1460px) {

  .hours-table th {
    font-size: 1.2rem;
  }
}

@media (max-width: 1000px){
    
  .shinryo-card {
    align-items: center;
  }
  
}
@media (max-width: 900px) {
  
  .hours-table th {
    font-size: 1rem;
  }
 
  .features-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .shinryo-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hours-table td {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  
  .features-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hours-table {
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 400px;
    width: 100%;
  }
  
  .hours-table {
    min-width: 100%;
  }
  
  .section-inner-ps p {
    font-size: 0.85rem;
    margin-top: 20px;
    line-height: 1.7;
}
  
  
}
