/* ========================================
   テクノファーマ スタイルシート
   ======================================== */

/* ページ遷移のホワイトフラッシュ防止（View Transitions API） */
@view-transition {
  navigation: auto;
}

/* リセット & ベース */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #5cb84e;
  --green-dark: #449038;
  --green-light: #edf7e6;
  --green-accent: #7ccc5c;
  --blue: #5c96cc;
  --blue-dark: #4078b0;
  --blue-light: #eaf3fb;
  --text: #1e2c1a;
  --text-light: #506050;
  --border: #c4e0b8;
  --bg-light: #f2faf0;
  --bg-cream: #f6fcf3;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(30,46,40,0.07), 0 2px 8px rgba(30,46,40,0.05);
  --shadow-md: 0 2px 8px rgba(30,46,40,0.08), 0 4px 16px rgba(30,46,40,0.06);
  --shadow-lg: 0 4px 16px rgba(30,46,40,0.1), 0 8px 32px rgba(30,46,40,0.07);
  --shadow-hover: 0 8px 28px rgba(30,46,40,0.14), 0 2px 8px rgba(30,46,40,0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.01em;
  background-color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  word-break: break-all;
  overflow-wrap: break-word;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--green-dark);
  opacity: 0.88;
}

ul {
  list-style: none;
}

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

/* ========================================
   ヘッダー
   ======================================== */
#header {
  background-color: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.header-contact {
  text-align: right;
}

.header-address {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.tel-label {
  font-size: 0.75rem;
  background: var(--green);
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.tel-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #449038;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

.tel-number:hover {
  color: #357030;
}

/* グローバルナビ */
#global-nav {
  background: var(--green-dark);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-item {
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.nav-item:first-child {
  border-left: 1px solid rgba(255,255,255,0.25);
}

.nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  color: white;
  text-decoration: none;
  transition: background 0.25s ease;
  text-align: center;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-item a:hover::after,
.nav-item.active a::after {
  transform: scaleX(1);
}

.nav-item a:hover,
.nav-item.active a {
  background-color: rgba(0,0,0,0.18);
  color: white;
}

.nav-en {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.nav-ja {
  font-size: 0.72rem;
  margin-top: 3px;
  line-height: 1.2;
}

/* ========================================
   ヒーロースライダー
   ======================================== */
#hero {
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* スライド背景（グラデーションで代替） */
.slide-bg-1 {
  background: linear-gradient(145deg, #c4eca0 0%, #90d470 45%, #66be46 100%);
}

.slide-bg-2 {
  background: linear-gradient(145deg, #5cb84e 0%, #5c96cc 55%, #4078b0 100%);
}

.slide-bg-3 {
  background: linear-gradient(145deg, #6bb5e8 0%, #5c96cc 45%, #4078b0 100%);
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.02);
}

.slide-text {
  text-align: center;
  color: white;
  padding: 32px 40px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius);
  max-width: 860px;
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: 0.06em;
  line-height: 1.45;
  white-space: nowrap;
}

.slide-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  opacity: 0.96;
  letter-spacing: 0.02em;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.4rem;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  transition: background 0.25s ease, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.6);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}

.dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   コンテンツエリア
   ======================================== */
#content-area {
  background: var(--bg-cream);
  padding: 50px 0;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* セクションヘッダー共通 */
.section-header {
  margin-bottom: 24px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-en {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.22em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-en::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.title-ja {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  padding-left: 0;
  margin-top: 4px;
}

.section-title.white .title-en {
  color: rgba(255,255,255,0.85);
}

.section-title.white .title-en::before {
  background: rgba(255,255,255,0.85);
}

.section-title.white .title-ja {
  color: white;
}

/* ========================================
   ニュースセクション
   ======================================== */
#news-section {
  flex: 1;
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
  min-width: 90px;
}

.news-category {
  font-size: 0.75rem;
  background: var(--green-light);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
}

.news-title {
  font-size: 0.92rem;
  color: var(--text);
  flex: 1;
  min-width: 150px;
}

.news-title:hover {
  color: var(--green);
  text-decoration: underline;
}

.news-more {
  margin-top: 24px;
  text-align: right;
}

.btn-more {
  display: inline-block;
  padding: 8px 24px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-more:hover {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(92,184,78,0.3);
}

/* ========================================
   バナーエリア
   ======================================== */
#banner-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 260px;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.banner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.banner-item:hover::before {
  opacity: 1;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.banner-support {
  background: linear-gradient(135deg, var(--green-accent), var(--green-dark));
}

.banner-recruit {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.banner-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.banner-text p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.banner-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  opacity: 0.8;
}

/* ========================================
   企業理念セクション
   ======================================== */
#philosophy {
  background: linear-gradient(135deg, var(--green-accent) 0%, var(--green) 40%, var(--blue) 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

#philosophy::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

#philosophy::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content {
  margin-top: 10px;
}

.philosophy-text {
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 20px;
}

.philosophy-text strong {
  font-size: 1.6rem;
  display: block;
  margin-top: 8px;
}

.philosophy-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

/* ========================================
   事業紹介セクション
   ======================================== */
#services {
  padding: 60px 20px;
  background: var(--blue-light);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:nth-child(even) {
  border-top-color: var(--blue);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.service-link:hover {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

/* ========================================
   フッター
   ======================================== */
#footer {
  background: #4a9e3a;
  color: rgba(255,255,255,0.95);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-logo-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

.footer-logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.footer-address a {
  color: rgba(255,255,255,0.92);
}

.footer-address a:hover {
  color: white;
}

.footer-sns {
  margin-top: 18px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  transition: background 0.2s;
}

.sns-link:hover {
  background: rgba(255,255,255,0.4);
  color: white;
}

.footer-map iframe {
  border-radius: 6px;
  filter: grayscale(0.3);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding-left: 14px;
  transition: color 0.2s;
}

.footer-nav-list li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.7);
}

.footer-nav-list li a:hover {
  color: white;
}

.footer-copyright {
  background: rgba(0,0,0,0.12);
  text-align: center;
  padding: 18px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

/* ========================================
   固定採用CTAバー（全ページ共通）
   ======================================== */
#recruit-cta-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  width: calc(100% - 32px);
  max-width: 520px;
  z-index: 2000;
  background: white;
  color: var(--text);
  display: flex;
  flex-direction: column;
  padding: 14px 18px 12px;
  box-shadow: 0 4px 24px rgba(30,46,16,0.15), 0 1px 4px rgba(30,46,16,0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  gap: 10px;
}

#recruit-cta-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* 1行目：テキスト + ×ボタン */
.recruit-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.recruit-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.recruit-cta-label {
  font-size: 0.72rem;
  background: var(--green);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.recruit-cta-message {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruit-cta-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color 0.2s;
  opacity: 0.55;
  flex-shrink: 0;
}

.recruit-cta-close:hover {
  color: var(--text);
  opacity: 1;
}

/* 2行目：ボタン */
.recruit-cta-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-btn-line {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #06c755;
  color: white;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cta-btn-line:hover {
  opacity: 0.88;
  color: white;
}

.cta-btn-recruit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cta-btn-recruit:hover {
  opacity: 0.88;
  color: white;
}

/* モバイル対応 */
@media (max-width: 640px) {
  #recruit-cta-bar {
    padding: 12px 14px 10px;
  }

  .recruit-cta-message {
    display: none;
  }

  .recruit-cta-buttons {
    justify-content: stretch;
  }

  .cta-btn-line,
  .cta-btn-recruit {
    flex: 1;
    justify-content: center;
  }
}

/* ========================================
   内部ページ共通
   ======================================== */

/* パンくずリスト */
.breadcrumb {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.82rem;
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--green);
}

.breadcrumb-inner span::before {
  content: '›';
  margin-right: 8px;
}

/* ページヘッダー */
.page-header {
  background: linear-gradient(135deg, var(--green-accent) 0%, var(--green) 50%, var(--green-dark) 100%);
  padding: 54px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-en {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  opacity: 0.82;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header-ja {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

/* ページコンテンツ共通ラッパー */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* 2カラムレイアウト */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.main-col {
  min-width: 0;
}

/* サイドバー */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.sidebar-nav-list li:last-child a {
  border-bottom: none;
}

.sidebar-nav-list li a::before {
  content: '›';
  color: var(--green);
  font-size: 1rem;
}

.sidebar-nav-list li a:hover {
  color: var(--green);
}

/* テーブル共通 */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  width: 180px;
  white-space: nowrap;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* セクション内区切り */
.inner-section {
  margin-bottom: 50px;
}

.inner-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  padding: 12px 18px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
}

/* 店舗カード */
.pharmacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pharmacy-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pharmacy-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pharmacy-card-header {
  background: var(--green);
  color: white;
  padding: 14px 20px;
}

.pharmacy-card-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.pharmacy-card-body {
  padding: 20px;
}

.pharmacy-card-body dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 0.88rem;
}

.pharmacy-card-body dt {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.pharmacy-card-body dd {
  color: var(--text);
  line-height: 1.6;
}

/* 開業支援フロー */
.support-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.flow-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 30px;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--border);
}

.flow-step:last-child::after {
  display: none;
}

.flow-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 1;
}

.flow-body {
  flex: 1;
  padding-top: 12px;
}

.flow-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.flow-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* セミナーカード */
.seminar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seminar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.seminar-card:hover {
  box-shadow: var(--shadow-md);
}

.seminar-date-box {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  background: var(--green);
  color: white;
  border-radius: 6px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.seminar-month {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.85;
}

.seminar-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.seminar-year {
  font-size: 0.72rem;
  opacity: 0.85;
}

.seminar-body {
  flex: 1;
}

.seminar-status {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.seminar-status.ended {
  background: #eee;
  color: #999;
}

.seminar-status.open {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.seminar-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.seminar-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* 社員の声カード */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.voice-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 220px 1fr;
}

.voice-profile {
  background: var(--green);
  padding: 30px 24px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.voice-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.voice-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.voice-role {
  font-size: 0.82rem;
  opacity: 0.88;
}

.voice-store {
  font-size: 0.78rem;
  opacity: 0.78;
}

.voice-body {
  padding: 30px 34px;
}

.voice-q {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.voice-a {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.voice-a:last-child {
  margin-bottom: 0;
}

/* コンタクトフォーム */
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-required {
  font-size: 0.7rem;
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
}

.form-optional {
  font-size: 0.7rem;
  background: #aaa;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(92,184,78,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.btn-submit {
  display: inline-block;
  padding: 16px 60px;
  background: linear-gradient(135deg, var(--green-accent), var(--green));
  color: white;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(92,184,78,0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(92,184,78,0.4);
}

/* ========================================
   給与モデルカード
   ======================================== */
.salary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.salary-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.salary-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.salary-card-head {
  background: var(--green);
  color: white;
  padding: 12px 16px;
  text-align: center;
}

.salary-card-head .role {
  font-size: 0.8rem;
  opacity: 0.85;
}

.salary-card-head .exp {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
}

.salary-card-body {
  padding: 18px 16px;
  text-align: center;
}

.salary-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.salary-amount small {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.salary-detail {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.6;
}

/* 社長メッセージ */
.president-message {
  background: white;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.president-avatar {
  flex-shrink: 0;
  text-align: center;
  width: 120px;
}

.president-body {
  flex: 1;
  min-width: 0;
}

/* タイムライン（1日の流れ） */
.timeline-wrap {
  background: white;
  border-radius: 8px;
  padding: 32px 32px 32px 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 24px;
}

.timeline-time {
  position: absolute;
  left: -80px;
  top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  text-align: right;
  width: 60px;
}

.timeline-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 4px;
  position: relative;
  z-index: 1;
  margin-left: -8px;
}

.timeline-body {
  flex: 1;
  padding-bottom: 4px;
}

.timeline-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-cream);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: var(--green-light);
}

.faq-q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq-chevron {
  margin-left: auto;
  transition: transform 0.3s;
  font-size: 0.9rem;
  color: var(--text-light);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px 20px 16px 62px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  background: white;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* キャリアパス */
.career-path {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.career-stage {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
}

.career-stage:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 30px;
  font-size: 1.4rem;
  color: var(--green);
  z-index: 1;
}

.career-stage-box {
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 10px;
  margin: 0 14px;
  box-shadow: var(--shadow-sm);
}

.career-stage-year {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}

.career-stage-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.career-stage-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* 採用情報 */
.recruit-intro {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.recruit-intro p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.no-recruit {
  text-align: center;
  padding: 50px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.no-recruit p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* 物件情報 */
.property-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.property-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.property-card-header {
  background: var(--green);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.property-card-header h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.property-badge {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.25);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
}

.property-card-body {
  padding: 24px;
}

.property-card-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.property-tag {
  font-size: 0.78rem;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* サイトマップ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-category {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sitemap-category-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.sitemap-category ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-category ul li a {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}

.sitemap-category ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green);
}

.sitemap-category ul li a:hover {
  color: var(--green);
}

/* お知らせ詳細 */
.news-archive {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

/* ========================================
   はじめての方へ クイックナビ
   ======================================== */
.quick-nav {
  background: white;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.quick-nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-nav-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--green);
  border-radius: 2px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--green-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  line-height: 1.4;
}

.quick-nav-item:hover {
  border-color: var(--green);
  background: white;
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.quick-nav-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quick-nav-item:hover .quick-nav-icon {
  background: var(--green);
  box-shadow: 0 4px 14px rgba(92,184,78,0.3);
}

/* ========================================
   薬剤師テザー（index.html）
   ======================================== */
.staff-teaser {
  background: white;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.staff-teaser-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.staff-teaser-avatars {
  display: flex;
  gap: -8px;
  flex-shrink: 0;
}

.staff-avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.staff-avatar-circle:first-child {
  margin-left: 0;
}

.staff-teaser-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.staff-teaser-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========================================
   健康コラムテザー（index.html）
   ======================================== */
.health-teaser {
  background: white;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.health-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.health-teaser-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.health-teaser-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.health-teaser-thumb {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: var(--green-light);
}

.health-teaser-body {
  padding: 12px;
}

.health-teaser-cat {
  font-size: 0.7rem;
  background: var(--green-light);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
}

.health-teaser-title {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

/* ========================================
   LINE誘導バナー
   ======================================== */
.line-cta-banner {
  background: linear-gradient(135deg, #06c755, #04a345);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.3);
  text-decoration: none;
  color: white;
  transition: var(--transition);
  margin-bottom: 30px;
}

.line-cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6,199,85,0.4);
  color: white;
}

.line-cta-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
}

.line-cta-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.line-cta-text p {
  font-size: 0.82rem;
  opacity: 0.92;
  line-height: 1.5;
}

.line-cta-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: white;
  color: #06c755;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.line-cta-banner:hover .line-cta-btn {
  transform: translateX(2px);
}

/* ========================================
   薬局サービス詳細 (service.html)
   ======================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.service-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-detail-head {
  background: var(--green);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.service-detail-head-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.service-detail-head h2 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-detail-body {
  padding: 24px;
}

.service-detail-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-merit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-merit-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.service-merit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.service-cta-btn {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--green-accent), var(--green));
  color: white;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(92,184,78,0.25);
}

.service-cta-btn:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 5px 18px rgba(92,184,78,0.35);
  transform: translateY(-1px);
}

.service-steps {
  display: flex;
  gap: 0;
  margin: 14px 0;
}

.service-step {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  position: relative;
  padding: 8px 4px;
  background: var(--bg-cream);
  border-radius: 6px;
}

.service-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 0.9rem;
  z-index: 1;
}

.service-step span {
  display: block;
  font-weight: 700;
  color: var(--green);
  font-size: 0.7rem;
  margin-bottom: 2px;
}

/* ========================================
   薬剤師・スタッフ紹介 (staff.html)
   ======================================== */
.staff-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}

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

.staff-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.staff-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.staff-card-photo {
  background: linear-gradient(135deg, var(--green-light), #c0e8a8);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.staff-card-body {
  padding: 20px 16px;
}

.staff-card-store {
  font-size: 0.72rem;
  color: white;
  background: var(--green);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.staff-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.staff-card-qual {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.staff-card-comment {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: left;
}

.staff-cta-box {
  background: linear-gradient(135deg, var(--green-accent), var(--green-dark));
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: white;
}

.staff-cta-box h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.staff-cta-box p {
  font-size: 0.9rem;
  opacity: 0.92;
  margin-bottom: 20px;
  line-height: 1.7;
}

.staff-cta-btn {
  display: inline-block;
  padding: 12px 36px;
  background: white;
  color: var(--green);
  border-radius: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.staff-cta-btn:hover {
  background: var(--green-light);
  color: var(--green-dark);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* ========================================
   健康情報コラム (health.html)
   ======================================== */
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 11px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: inherit;
  border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
  color: var(--green);
  background: var(--green-light);
}

.tab-btn.active {
  color: var(--green-dark);
  border-bottom-color: var(--green);
  background: var(--green-light);
  font-weight: 700;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.health-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}

.health-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  color: var(--text);
}

.health-card-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--green-light);
}

.health-card-body {
  padding: 18px;
}

.health-card-cat {
  font-size: 0.72rem;
  background: var(--green-light);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.health-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.health-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.health-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
  display: block;
}

/* ========================================
   店舗カード強化（pharmacy.html）
   ======================================== */
.pharmacy-specialty {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.pharmacy-specialty-tag {
  font-size: 0.72rem;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.pharmacy-staff-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  font-size: 0.85rem;
}

.pharmacy-staff-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pharmacy-staff-name {
  font-weight: 600;
  color: var(--text);
}

.pharmacy-staff-link {
  font-size: 0.78rem;
  color: var(--green);
}

.pharmacy-card-map {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.pharmacy-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) saturate(0.9);
}

.pharmacy-card-cta {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
}

.pharmacy-cta-tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  background: linear-gradient(135deg, var(--green-accent), var(--green));
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.pharmacy-cta-tel:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  transform: translateY(-1px);
}

.pharmacy-cta-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  background: #06c755;
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.pharmacy-cta-line:hover {
  opacity: 0.88;
  color: white;
  transform: translateY(-1px);
}

/* ========================================
   その他サービス一覧（service.html）
   ======================================== */
.other-services-section {
  margin-top: 50px;
}

.other-services-section .section-header {
  margin-bottom: 28px;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.other-service-item {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.other-service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: var(--white);
}

.other-service-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.other-service-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.other-service-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   レスポンシブ追加（新コンポーネント）
   ======================================== */
@media (max-width: 970px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .health-teaser-grid {
    grid-template-columns: 1fr;
  }

  .staff-teaser-inner {
    flex-direction: column;
    text-align: center;
  }

  .line-cta-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .line-cta-btn {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .other-services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .quick-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .health-teaser-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 970px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

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

  .voice-card {
    grid-template-columns: 1fr;
  }

  .voice-profile {
    padding: 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }

  .seminar-card {
    flex-direction: column;
    gap: 16px;
  }

  .seminar-date-box {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
  }

  .seminar-day {
    font-size: 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .salary-cards {
    grid-template-columns: 1fr;
  }

  .career-path {
    flex-direction: column;
    gap: 16px;
  }

  .career-stage:not(:last-child)::after {
    content: '↓';
    position: static;
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: var(--green);
    margin: 4px 0;
  }

  .timeline-wrap {
    padding: 24px 20px 24px 90px;
  }

  .timeline {
    padding-left: 60px;
  }

  .timeline-time {
    left: -60px;
    width: 45px;
    font-size: 0.75rem;
  }

  .header-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .header-contact {
    text-align: right;
  }

  .header-tel {
    justify-content: flex-end;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    flex: 0 0 25%;
    min-width: 0;
  }

  .slider-container {
    height: 320px;
  }

  .slide-title {
    font-size: 1.6rem;
    white-space: normal;
  }

  .content-inner {
    flex-direction: column;
  }

  #banner-area {
    flex-direction: row;
    min-width: unset;
  }

  .banner-item {
    flex: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .page-header-ja {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .president-message {
    padding: 20px 16px;
    gap: 16px;
  }

  .president-avatar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .president-avatar p {
    margin-top: 0 !important;
  }

  .timeline-wrap {
    padding: 20px 14px 20px 70px;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-time {
    left: -50px;
    width: 38px;
    font-size: 0.7rem;
  }

  .info-table {
    display: block;
  }

  .info-table tbody {
    display: block;
  }

  .info-table tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
  }

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

  .info-table th,
  .info-table td {
    width: 100%;
    white-space: normal;
    border-bottom: none;
    padding: 10px 14px;
  }

  .info-table th {
    width: 100%;
    font-size: 0.82rem;
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 4px;
    padding-bottom: 12px;
  }

  .voice-profile {
    flex-direction: column;
    align-items: center;
  }


  .header-inner {
    padding: 8px 12px;
  }

  .header-address {
    display: none;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .logo-sub {
    display: none;
  }

  .tel-label {
    font-size: 0.68rem;
    padding: 2px 5px;
  }

  .tel-number {
    font-size: 1.05rem;
  }

  .nav-en {
    font-size: 0.6rem;
  }

  .nav-ja {
    font-size: 0.62rem;
  }

  .slider-container {
    height: 260px;
  }

  .slide-title {
    font-size: 1.3rem;
  }

  .slide-desc {
    font-size: 0.9rem;
  }

  #banner-area {
    flex-direction: column;
  }

  .philosophy-text {
    font-size: 1.1rem;
  }

  .philosophy-text strong {
    font-size: 1.25rem;
  }
}

/* ========================================
   index.html v2 — 脱AIデザイン リビルド
   ======================================== */

/* ① ヒーロー */
#hero-v2 {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(150deg, #8ad870 0%, #62be4e 45%, #4a9e3a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* グリッドテクスチャ */
#hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* 装飾的大数字「7」*/
#hero-v2::after {
  content: '7';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-52%);
  font-size: clamp(220px, 32vw, 480px);
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.hero-v2-eyebrow {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-v2-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-v2-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 440px;
}

.hero-v2-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 2px;
}

.hero-v2-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: #fff;
  opacity: 1;
}

.hero-v2-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  z-index: 1;
}

/* ② 実績数字 */
#stats-v2 {
  background: #4a9e3a;
  padding: 64px 20px;
}

.stats-v2-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-v2-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-v2-num {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-v2-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  margin-top: 10px;
  letter-spacing: 0.18em;
}

.stat-v2-div {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ③ サービス：非対称3:2グリッド */
#service-v2 {
  padding: 120px 20px;
  background: var(--white);
}

.service-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.service-v2-num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.service-v2-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.service-v2-desc {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 36px;
}

.service-v2-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  letter-spacing: 0.04em;
  transition: padding-left 0.2s ease;
  text-decoration: none;
}

.service-v2-cta:hover {
  padding-left: 8px;
  color: var(--green-dark);
  opacity: 1;
}

/* サービスサブリスト */
.service-v2-sub {
  padding-top: 72px; /* ずらして非対称感を出す */
}

.service-v2-sub-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.service-v2-sub-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: padding-left 0.2s ease;
}

.service-v2-sub-item:first-of-type {
  border-top: 1px solid var(--border);
}

.service-v2-sub-item:hover {
  padding-left: 6px;
}

.service-v2-sub-num {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 36px;
}

.service-v2-sub-name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
}

.service-v2-sub-arrow {
  color: var(--green);
  font-size: 0.85rem;
}

.service-v2-all {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.service-v2-all:hover {
  opacity: 0.7;
}

.service-v2-note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-light);
}

.service-v2-note a {
  color: var(--green-dark);
  font-weight: 600;
}

/* ④ 薬剤師フィーチャー：低密度・中央 */
#staff-v2 {
  background: var(--bg-light);
  padding: 130px 20px;
  text-align: center;
}

.staff-v2-inner {
  max-width: 640px;
  margin: 0 auto;
}

.staff-v2-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.staff-v2-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.staff-v2-desc {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 48px;
}

.staff-v2-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: padding-right 0.2s ease;
}

.staff-v2-link:hover {
  padding-right: 6px;
  color: var(--green-dark);
  opacity: 1;
}

/* ⑤ お知らせ */
#news-v2 {
  padding: 80px 20px 100px;
  background: var(--white);
}

.news-v2-inner {
  max-width: 860px;
  margin: 0 auto;
}

.news-v2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.news-v2-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--green-light); /* 薄い色 — 装飾として機能させる */
  line-height: 1;
  letter-spacing: -0.04em;
}

.news-v2-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-bottom: 12px;
}

.news-v2-all:hover {
  opacity: 0.7;
}

.news-v2-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.news-v2-item:first-child {
  border-top: 1px solid var(--border);
}

.news-v2-date {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.news-v2-cat {
  font-size: 0.72rem;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
}

.news-v2-title {
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.2s ease;
}

.news-v2-title:hover {
  color: var(--green-dark);
  opacity: 1;
}

/* ⑥ LINE CTA */
#line-v2 {
  background: var(--green);
  padding: 100px 20px;
  text-align: center;
}

.line-v2-inner {
  max-width: 560px;
  margin: 0 auto;
}

.line-v2-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.line-v2-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 44px;
}

.line-v2-btn {
  display: inline-block;
  background: #fff;
  color: var(--green-dark);
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.line-v2-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: var(--green-dark);
  opacity: 1;
}

/* ----------------------------------------
   レスポンシブ（v2）
   ---------------------------------------- */

@media (max-width: 970px) {
  .hero-v2-inner {
    padding: 0 28px 80px;
  }

  .service-v2-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .service-v2-sub {
    padding-top: 0;
    border-top: 1px solid var(--border);
    padding-top: 48px;
  }

  #staff-v2 {
    padding: 100px 20px;
  }
}

@media (max-width: 640px) {
  #hero-v2 {
    min-height: 80vh;
  }

  .hero-v2-inner {
    padding: 0 20px 64px;
  }

  .hero-v2-title {
    font-size: 2.2rem;
  }

  #hero-v2::after {
    font-size: 55vw;
    right: -5%;
  }

  #stats-v2 {
    padding: 48px 20px;
  }

  .stats-v2-inner {
    gap: 0;
  }

  .stat-v2-item {
    padding: 0 12px;
  }

  .stat-v2-num {
    font-size: 2.8rem;
  }

  .stat-v2-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .stat-v2-div {
    height: 48px;
  }

  #service-v2 {
    padding: 80px 20px;
  }

  #staff-v2 {
    padding: 80px 20px;
  }

  .staff-v2-title {
    font-size: 1.8rem;
  }

  .news-v2-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-v2-heading {
    font-size: 2.8rem;
  }

  #line-v2 {
    padding: 80px 20px;
  }

  .line-v2-title {
    font-size: 2rem;
  }
}
