  :root {
    --green: #2d893b;
    --green-light: #e8f5e9;
    --green-mid: #4caf50;
    --green-dark: #1b5e20;
    --accent: #f0f9f1;
    --text: #2c2c2c;
    --text-light: #555;
    --border: #c8e6c9;
    --white: #fff;
    --shadow: 0 2px 16px rgba(45,137,59,0.07);
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  body {
    line-height: 1.75;
  }
 
  .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  /* ── Section ── */
  .section {
     margin-bottom: 32px;
  }
 
 
  /* ── Headings ── */
  h1{
     font-size: 1.8rem;
  }
  h2 {
    color: var(--green);
    font-size:1.65rem;
    font-weight: 700;
    border-left: 5px solid var(--green);
    padding-left: 14px;
    margin-bottom: 22px;
    line-height: 1.4;
	margin-top:66px;
  }
 
  h3 {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.35rem;
    margin: 24px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px !important;
    margin-bottom: 21px;
	border-bottom:solid 3px #ddd;
	position:relative;
	padding-bottom:3px;
  }
 
  h3::before {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 20%;
    height: 3px;
    content: '';
    background: var(--green);
  }
  
  .inner-link a{
color:#1a0dab;
font-size:16px;
}
 
  /* ── Lead text ── */
  .lead {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
  }
 
  p { margin-bottom: 14px;}
 
  /* ── Checklist ── */
  .check-list {
    list-style: none;
    margin: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
 
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
  }
 
  .check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 7px;
  }
 
  /* ── Cause cards ── */
  .cause-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 26px 22px 26px;
    margin-bottom: 20px;
  }
 
  .cause-card h3 { margin-top: 0; }
 
  .cause-card .sub-list {
    list-style: none;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
 
  .cause-card .sub-list li {
    padding-left: 18px;
    position: relative;
  }
 
  .cause-card .sub-list li::before {
    content: '・';
    position: absolute; left: 0;
    color: var(--green-mid);
  }
 
  /* ── Treatment tag ── */
  .treatment-label {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin: 14px 0 8px;
    letter-spacing: 0.05em;
  }
 
  /* ── Flow steps ── */
  .flow-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .flow-item {
    display: flex;
    gap: 18px;
    position: relative;
  }
 
  .flow-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px; top: 42px;
    width: 2px;
    bottom: 0;
    background: var(--border);
  }
 
  .flow-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 2px;
  }
 
  .flow-body {
    padding-bottom: 28px;
    flex: 1;
  }
  
  .flow-body:last-child{
  margin-bottom:0;
  }
 
  .flow-body strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 4px;
  }
 
  .flow-body p {
    color: var(--text-light);
    margin: 0;
  }
 
  /* ── Exam cards grid ── */
  .exam-grid {
    margin-top: 16px;
  }
 
  .exam-card {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    background: var(--white);
    transition: box-shadow 0.2s;
	margin-bottom:1rem;
  }
 
  .exam-card:hover { box-shadow: 0 4px 18px rgba(45,137,59,0.12); }
 
  .exam-card .exam-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
 
  .exam-card strong {
    display: block;
    color: var(--green);
     margin-bottom: 15px;
	 font-size:1.3rem;
  }
 
  .exam-card p {
    margin: 0 0 15px;
    color: var(--text-light);
  }
 
  /* ── Message box ── */
  .message-box {
    border-radius: 0 10px 10px 0;
    padding: 0 0 30px;
  }
 
  .message-box p { color: #333; margin-bottom: 12px; }
  .message-box p:last-of-type { margin-bottom: 0; }
 
  .doctor-sig {
    margin-top: 20px;
    color: var(--green-dark);
    font-weight: 700;
  }
 
  /* ── CTA box ── */
  .cta-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 0 10px 10px 0;
    padding: 28px 30px;
    margin-bottom: 32px;
  }
 
  .cta-box h2 {
    color: var(--green);;
    margin-bottom: 16px;
	margin-top:0;
  }
 
  /* ── Clinic info ── */
  .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 0.93rem;
  }
 
  .info-table tr { border-bottom: 1px solid var(--border); }
  .info-table tr:last-child { border-bottom: none; }
 
  .info-table th {
    width: 120px;
    padding: 12px 8px;
    text-align: left;
    color: var(--green-dark);
    font-weight: 700;
    vertical-align: top;
  }
 
  .info-table td {
    padding: 12px 8px;
    color: var(--text-light);
  }
 
  /* ── Q&A ── */
  .qa-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
  }
 
  .qa-q {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--green-light);
	justify-content: space-between;
  }
  
  .qa-arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--green);
  font-size: 0.85rem;
  padding-top: 10px;
  transition: transform 0.3s;
}

.qa-arrow.open {
  transform: rotate(180deg);
}
 
  .qa-badge-q {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 7px;
  }
 
  .qa-q-text {
    color: var(--green-dark);
    font-weight: 700;
    padding-top: 4px;
	font-size:1.2rem;
  }
 
  .qa-a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
  }
 
  .qa-badge-a {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: #fff;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 7px;
  }
 
  .qa-a-text {
    color: var(--text-light);
    padding-top: 4px;
  }
 
 .yoyaku-btn{
 text-align:center;
 margin-top:50px;
 }
  .btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e8670a;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(232,103,10,0.30);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
  }
 
  .btn-reserve::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: inherit;
  }
 
  .btn-reserve:hover {
    box-shadow: 0 6px 24px rgba(232,103,10,0.38);
    transform: translateY(-2px);
	text-decoration:none;
  }
 
  .btn-reserve:hover::before { opacity: 1; }
 
  .btn-reserve:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(232,103,10,0.25);
  }
 
  /* アイコン */
  .btn-reserve .icon {
    width: 22px; height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
 
  /* 矢印 */
  .btn-reserve .arrow {
    width: 18px; height: 18px;
    fill: none;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
 
  .btn-reserve:hover .arrow {
    transform: translateX(3px);
    stroke: #fff;
  }
  
  /* ── Link ── */
  a { text-decoration: none; }
  a:hover { text-decoration: underline; }
 
  .more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    color: var(--green);
    font-weight: 500;
    margin-top: 10px;
  }
 
  .more-link::after { content: '›'; font-size: 1.1rem; }
   @media(max-width:600px) {
  	body {
	font-size: 4.3vw;
	line-height: 1.7;
	}
	h2{
	font-size:5.7vw;
	line-height:1.3;
	}
	h3{
	font-size:4.8vw;
	line-height:1.3;
	padding-bottom:2vw;
	}
	.qa-q-text,.exam-card strong{
	font-size:4.5vw;
	}
    .section { padding: 0; }
	.cause-card { padding: 15px 12px 22px;}
	.message-box { padding: 0;}
	.cta-box {padding: 32px 15px;}
	.cta-box h2{margin-top:0;}
	 .btn-reserve-outline {font-size:5vw;}
	 .flow-body:last-child{padding-bottom:0;}
  }