/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* Variables */
/* Trustworthy Med Blue */
/* Light Blue */
/* Warm Orange */
/* Very subtle cool gray/blue */
/* Reset & Base */
* {
  box_sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: #f7fbfc;
}

.bg-white {
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #008CB4;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #FF9F43;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FF9F43;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.btn:hover {
  background-color: #e68a30;
  /* Darker Orange */
  transform: translateY(-2px);
}
.btn.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
header .logo {
  font-size: 1.4rem;
  color: #008CB4;
  display: flex;
  align-items: center;
}
header .logo img {
  height: 40px;
  margin-right: 10px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
header nav ul li a {
  font-weight: 500;
  font-size: 0.95rem;
}
header nav ul li a:hover {
  color: #008CB4;
}
header .mobile-menu-btn {
  display: none;
}
header .btn-header {
  padding: 8px 20px;
  border-radius: 50px;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 140, 180, 0.7), rgba(0, 70, 90, 0.7)), url("../img/hero_bg.jpg") no-repeat center center/cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero .hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}
.hero .hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* News Ticker */
.news-ticker {
  background: #f0f0f0;
  padding: 10px 0;
  font-size: 0.9rem;
}
.news-ticker .container {
  display: flex;
  align-items: center;
}
.news-ticker .label {
  background: #008CB4;
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  margin-right: 15px;
  font-size: 0.8rem;
}
.news-ticker a:hover {
  text-decoration: underline;
}

/* Concept Cards */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.concept-grid .card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.concept-grid .card .icon-header {
  font-size: 3rem;
  color: #008CB4;
  margin-bottom: 20px;
}
.concept-grid .card h3 {
  margin-bottom: 15px;
  color: #008CB4;
}
.concept-grid .card p {
  font-size: 0.95rem;
  color: #666;
}

/* Checklist */
.checklist {
  background: #fff4e6;
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.checklist ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.checklist ul li {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.checklist ul li i {
  color: #FF9F43;
  margin-right: 10px;
}

/* Medical Table */
.medical-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.medical-table th,
.medical-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.medical-table th {
  background: #008CB4;
  color: #fff;
  width: 30%;
  white-space: nowrap;
}
.medical-table tr:last-child th,
.medical-table tr:last-child td {
  border-bottom: none;
}

.note-box {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Doctor */
.doctor-profile {
  display: flex;
  gap: 40px;
  align-items: center;
}
.doctor-profile .pic {
  flex: 1;
  max-width: 350px;
}
.doctor-profile .pic img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.doctor-profile .txt {
  flex: 2;
}
.doctor-profile .txt h3 {
  font-size: 1.8rem;
  color: #008CB4;
  margin-bottom: 15px;
}
.doctor-profile .txt h3 .small {
  font-size: 1rem;
  color: #333;
  font-weight: normal;
}
.doctor-profile .txt .credentials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.doctor-profile .txt .credentials li {
  background: #bcecf7;
  color: #004c61;
  /* Darker Blue */
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.doctor-profile .txt .message {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #FF9F43;
  font-style: italic;
}

/* First Visit flow */
.flow-grid {
  display: flex;
  gap: 30px;
}
.flow-grid .flow-item {
  flex: 1;
  background: #f7fbfc;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.flow-grid .flow-item h4 {
  color: #008CB4;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* QA */
.qa-list {
  max-width: 800px;
  margin: 0 auto;
}
.qa-list .qa-item {
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}
.qa-list .qa-item dt {
  font-weight: bold;
  color: #008CB4;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.qa-list .qa-item dd {
  padding-left: 20px;
  border-left: 3px solid #ddd;
}

/* Access */
.access-grid {
  display: flex;
  gap: 40px;
}
.access-grid .info,
.access-grid .map {
  flex: 1;
}
.access-grid .info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.access-grid .info .address,
.access-grid .info .tel,
.access-grid .info .parking {
  margin-bottom: 10px;
}
.access-grid .info .tel {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008CB4;
}
.access-grid .info .transport {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
}

.schedule-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}
.schedule-table th,
.schedule-table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.schedule-table thead th {
  background: #008CB4;
  color: #fff;
}
.schedule-table th:first-child {
  background: #eee;
  color: #333;
  font-weight: bold;
}
.schedule-table .small-note {
  font-size: 0.8rem;
  margin-top: 5px;
  color: #666;
}

/* Footer */
footer {
  background: #006a88;
  /* Darker footer */
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
footer .footer-links {
  margin: 20px 0;
}
footer .footer-links a {
  margin: 0 15px;
  opacity: 0.8;
}
footer .footer-links a:hover {
  opacity: 1;
}
footer .copyright {
  font-size: 0.8rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  header .header-inner {
    padding: 0 20px;
  }
  header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  header nav ul {
    flex-direction: column;
    gap: 15px;
  }
  header nav.active {
    display: block;
  }
  header .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .hero {
    height: 500px;
    padding: 0 20px;
  }
  .hero .hero-content h2 {
    font-size: 1.8rem;
  }
  .hero .hero-btns {
    flex-direction: column;
  }
  .doctor-profile {
    flex-direction: column;
  }
  .flow-grid {
    flex-direction: column;
  }
  .access-grid {
    flex-direction: column-reverse;
    /* Map on top or bottom */
  }
  .medical-table th,
  .medical-table td {
    display: block;
    width: 100%;
  }
  .medical-table th {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */