@charset "utf-8";
/* CSS Document */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  color: #333;
  background: #f5f3ef;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
.nowrap {
  display: inline-block;
  white-space: nowrap;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 3px solid #f39800;
  padding: 12px 0;
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo-img {
  display: block;
  height: 60px; /* 必要に応じて調整 */
  width: auto;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}
.header-phone-number {
  font-size: 20px;
  font-weight: 700;
  color: #0068b7;
}
.header-back-link {
  font-size: 13px;
  color: #0068b7;
  border: 1px solid #0068b7;
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.header-back-link:hover {
  background: #0068b7;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #4bab33 0%, #2d8a1e 50%, #1a6b0f 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 20px 50px;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero-recruit-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .highlight {
  color: #ffe066;
  position: relative;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f39800, #e88700);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(243,152,0,0.4);
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(243,152,0,0.5);
}
.hero-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== SECTION COMMON ===== */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4bab33, #3eb6e3);
  border-radius: 2px;
}
.section-title .section-subtitle {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
  letter-spacing: 0.1em;

}

/* ===== ABOUT ===== */
.about {
  background: #fff;
}
.about-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.about-text {
  flex: 1;
}
.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.9;
}
.about-text .emphasis {
  color: #4bab33;
  font-weight: 700;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about-feature {
  text-align: center;
  padding: 20px 12px;
  background: #f8faf7;
  border-radius: 10px;
  border: 1px solid #e8f0e5;
}
.about-feature-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.about-feature-label {
  font-size: 13px;
  font-weight: 700;
  color: #4bab33;
}

/* ===== APPEAL ===== */
.appeal {
  background: linear-gradient(180deg, #f5f3ef, #eef6eb);
}
.appeal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.appeal-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.appeal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.appeal-card-number {
  font-size: 12px;
  font-weight: 700;
  color: #4bab33;
  background: #eef6eb;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.appeal-card-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.appeal-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}
.appeal-card p {
  font-size: 13px;
  text-align:left;
  color: #666;
  line-height: 1.7;
}

/* ===== JOB DETAILS ===== */
.job-details {
  background: #fff;
}
.job-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.job-table tr {
  border-bottom: 1px solid #eee;
}
.job-table th {
  background: #f8faf7;
  color: #4bab33;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  width: 160px;
  vertical-align: top;
  border-right: 3px solid #4bab33;
}
.job-table td {
  padding: 16px 20px;
  line-height: 1.8;
}
.job-table td .note {
  font-size: 13px;
  color: #888;
}
.job-table td .highlight-text {
  color: #e85c00;
  font-weight: 700;
}

/* ===== MESSAGE ====== */
.message {
  background: linear-gradient(135deg, #f8faf7, #eef6eb);
}
.message-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 5px solid #4bab33;
}
.message-box p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
}
.message-box .message-name {
  text-align: right;
  font-weight: 700;
  color: #555;
  margin-top: 20px;
}

/* ===== FAQ ====== */
.faq-section {
  background: #f9f9f9;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f39800;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.faq-q-text {
  flex: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  padding-top: 4px;
}
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #aaa;
  transition: transform 0.3s ease;
  padding-top: 4px;
}
 details[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 24px 24px;
}
.faq-a-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #4bab33;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.faq-a-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  padding-top: 4px;
}

/* ===== FORM SECTION ===== */
.form-section {
  background: linear-gradient(135deg, #4bab33 0%, #2d8a1e 100%);
  color: #fff;
  padding-bottom: 60px;
}
.form-section .section-title h2 {
  color: #fff;
}
.form-section .section-title h2::after {
  background: linear-gradient(90deg, #ffe066, #f39800);
}
.form-section .section-title .section-subtitle {
  color: rgba(255,255,255,0.7);
}
.form-intro {
  text-align: center;
  margin-bottom: 30px;
}
.form-intro p {
  font-size: 15px;
  opacity: 0.9;
}
.form-intro .tour-note {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
}
.form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  color: #333;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.form-box h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #4bab33;
  margin-bottom: 24px;
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.form-group label .required {
  background: #e85c00;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 500;
}
.form-group label .optional {
  background: #ccc;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4bab33;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(75,171,51,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}
.form-radio-group input[type="radio"] {
  accent-color: #4bab33;
  width: 18px;
  height: 18px;
}
.form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-submit button {
  background: linear-gradient(135deg, #f39800, #e88700);
  color: #fff;
  border: none;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(243,152,0,0.3);
}
.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(243,152,0,0.4);
}
.form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

/* ===== CONTACT ALT ===== */
.contact-alt {
  text-align: center;
  margin-top: 30px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}
.contact-alt p {
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-alt .phone-display {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.contact-alt .phone-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== MAP ===== */
.map-section {
  background: #fff;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.map-info {
  text-align: center;
  font-size: 14px;
  color: #666;
}
.map-info p {
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.footer-clinic-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f39800;
}
.footer-info {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.8;
}
.footer-copyright {
  margin-top: 16px;
  font-size: 12px;
  opacity: 0.5;
}

/* ===== SECTION CTA BUTTON ===== */
.section-cta {
  text-align: center;
  margin-top: 36px;
}
.section-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f39800, #e88700);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(243,152,0,0.35);
  letter-spacing: 0.03em;
}
.section-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(243,152,0,0.5);
  color: #fff;
}
.section-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    justify-content: center;
    text-align: center;
  }
  .header-phone {
    display: none;
  }
  .hero {
    padding: 40px 16px 36px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-cta {
    padding: 14px 30px;
    font-size: 16px;
  }
  .section {
    padding: 36px 16px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .about-content {
    flex-direction: column;
  }
  .about-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .about-feature {
    padding: 14px 8px;
  }
  .appeal-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }
  .job-table th {
    border-right: none;
    border-bottom: 2px solid #4bab33;
    padding-bottom: 6px;
  }
  .job-table td {
    padding-top: 8px;
    padding-bottom: 16px;
  }
  .message-box {
    padding: 24px 20px;
  }
  .form-box {
    padding: 24px 16px;
  }
  .form-submit button {
    width: 100%;
    padding: 16px 20px;
  }
  .contact-alt .phone-display {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 22px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}