@charset "UTF-8";
/* 外部CSSにする場合は、この <style> の中身を
           style.css という名前で保存し、HTMLから
           <link rel="stylesheet" href="style.css"> で読み込んでください。
        */
/* Base Styles */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #1e293b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #f1f5f9;
  padding: 24px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.site-logo p {
  margin: 0;
  font-size: 10px;
  color: #94a3b8;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Reservation Button */
.section-reserve {
  margin: 20px 0 48px 0;
}

.btn-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #2563eb;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
  transition: all 0.2s;
}

.btn-reserve:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.reserve-sub-links {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}

.reserve-sub-links a {
  color: #64748b;
  text-decoration: underline;
  text-decoration-color: #e2e8f0;
  text-underline-offset: 4px;
}

/* Sections common */
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

/* News List */
.news-list {
  border-top: 1px solid #f8fafc;
  border-bottom: 1px solid #f8fafc;
  margin-bottom: 48px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f8fafc;
}

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

.news-text {
  font-size: 14px;
  font-weight: 500;
}

.news-date {
  font-size: 10px;
  color: #cbd5e1;
  font-weight: bold;
}

/* Info Card (診療時間) */
.info-card {
  background-color: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-label {
  font-weight: bold;
  color: #475569;
}

.hours-time {
  font-weight: bold;
}

.text-blue {
  color: #2563eb;
}

.text-red {
  color: #ef4444;
}

.info-note {
  margin-top: 16px;
  font-size: 11px;
  color: #94a3b8;
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  background-color: #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.address-block h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.address-sub {
  font-size: 14px;
  color: #64748b;
  margin: 4px 0 16px;
}

.link-external {
  color: #2563eb;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Footer */
.site-footer {
  border-top: 1px solid #f8fafc;
  padding: 48px 0;
  text-align: center;
}

.footer-tel {
  font-size: 24px;
  font-weight: 900;
  color: #1e293b;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.copyright {
  font-size: 10px;
  color: #cbd5e1;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* Responsive Icons (SVG) */
.icon-sm {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#booking-package input[type=text],
#booking-package textarea,
#booking-package-user-form input[type=text],
#booking-package-user-form input[type=password],
#booking-package-user-form textarea,
#booking-package-loginform input[type=text],
#booking-package-loginform input[type=password],
#booking-package-loginform textarea,
#booking-package-user-edit-form input[type=text],
#booking-package-user-edit-form input[type=password],
#booking-package-user-edit-form textarea {
  padding: 10px;
}

#booking-package_inputFormPanel .book_now_button {
  padding: 15px;
  border: none;
  background: #4caf50;
  color: #fff;
}

#booking-package_inputFormPanel .return_form_button,
#booking-package button {
  padding: 15px;
  background: #e8e8e8;
  border: none;
  font-size: 90%;
  width: 100%;
}

.content #booking-package_inputFormPanel textarea {
  width: 100%;
  padding: 15px;
  height: 150px;
}

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

.news-list a {
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.section-text {
  padding: 1rem;
  background: #f3f3f3;
  margin-bottom: 2rem;
}
.section-text h2 {
  font-size: 1.2rem;
  margin-top: 0;
}
.section-text ul {
  margin-top: 1rem;
  margin-left: 1rem;
  margin-bottom: 0;
}
.section-text li {
  margin-top: 1rem;
}
.section-text li strong {
  display: block;
}
.section-text p {
  margin: 1rem 0 0 0;
}

.link a {
  background-color: #2563eb;
  display: block;
  text-align: center;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 1rem;
}

@media screen and (min-width: 270px) and (max-width: 639px) {
  .container {
    padding: 0px;
  }
  .section-text ul {
    padding-left: 1rem;
  }
}/*# sourceMappingURL=main.css.map */