﻿/* ===========================
   さくら中央法務事務所 スタイル
   =========================== */

/* --- リセット・基本設定 --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-light:   #fff0f3;
  --pink-soft:    #fde8ed;
  --pink-mid:     #fac8d4;
  --pink-accent:  #e8829a;
  --pink-dark:    #c4607a;
  --pink-deeper:  #a34060;
  --white:        #ffffff;
  --gray-light:   #f8f8f8;
  --gray-mid:     #e0e0e0;
  --text-dark:    #2d2d2d;
  --text-mid:     #555555;
  --text-light:   #888888;
  --radius:       10px;
  --shadow:       0 4px 20px rgba(196,96,122,0.10);
  --shadow-hover: 0 8px 30px rgba(196,96,122,0.18);
  --transition:   0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
}

a {
  color: var(--pink-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--pink-deeper); }

ul { list-style: none; }

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

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

/* --- ボタン --- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--pink-dark);
  color: var(--white);
  border-color: var(--pink-dark);
}
.btn-primary:hover {
  background: var(--pink-deeper);
  border-color: var(--pink-deeper);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,96,122,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border-color: var(--pink-dark);
}
.btn-outline:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- セクション共通 --- */
.section {
  padding: 90px 0;
}
.section-pink {
  background: var(--pink-light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink-accent);
  background: var(--pink-soft);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   ヘッダー
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pink-mid);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(196,96,122,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ロゴ＋スマホ専用ボタンのまとめWrapper */
.logo-with-sp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  flex: 1;
}

/* スマホ専用：最新ニュースボタン（PCでは非表示） */
.header-news-btn-sp {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
.logo-mark-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
/* さくら花びら画像（花部分のみ切り抜き済みファイル） */
.logo-mark-sakura {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.global-nav ul li a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--transition);
}
.global-nav ul li a:hover {
  color: var(--pink-dark);
  background: var(--pink-soft);
}
.btn-contact-nav {
  background: var(--pink-dark) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 6px 14px !important;
  white-space: nowrap !important;
}
.btn-contact-nav:hover {
  background: var(--pink-deeper) !important;
  color: var(--white) !important;
}
.btn-news-nav {
  background: #e07050 !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 5px 14px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  line-height: 1.2 !important;
}
.btn-news-nav:hover {
  background: #c05838 !important;
  color: var(--white) !important;
}
.news-updated {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.88;
  letter-spacing: 0;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* モバイルナビ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--pink-mid);
  z-index: 999;
  padding: 16px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 28px;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--pink-soft);
}
.mobile-nav ul li a:hover {
  background: var(--pink-soft);
  color: var(--pink-dark);
}
.mobile-lang-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px 4px;
  border-top: 1px solid var(--pink-soft);
  margin-top: 4px;
}
.mobile-lang-btn {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-dark);
  text-decoration: none;
  border: 1px solid var(--pink-mid);
  transition: all 0.2s;
}
.mobile-lang-btn:hover,
.mobile-lang-btn.mobile-lang-active {
  background: var(--pink-dark);
  color: var(--white);
  border-color: var(--pink-dark);
}

/* ===========================
   ヒーロー
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pink-light) 0%, #fff5f7 40%, #ffffff 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.petal {
  position: absolute;
  color: var(--pink-mid);
  animation: floatPetal 8s ease-in-out infinite;
  opacity: 0.5;
}
.p1 { font-size: 40px; top: 10%; left: 8%; animation-delay: 0s; }
.p2 { font-size: 24px; top: 20%; right: 12%; animation-delay: 1.5s; }
.p3 { font-size: 32px; bottom: 25%; left: 5%; animation-delay: 3s; }
.p4 { font-size: 20px; top: 60%; right: 8%; animation-delay: 4.5s; }
.p5 { font-size: 28px; bottom: 10%; right: 20%; animation-delay: 2s; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(15deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
}

.hero-catch-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink-accent);
  background: var(--pink-soft);
  display: inline-block;
  padding: 4px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-catch .accent {
  color: var(--pink-dark);
  position: relative;
}
.hero-catch .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-mid);
  border-radius: 2px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   業務内容
   =========================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--pink-mid);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-accent), var(--pink-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--pink-accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.service-type {
  font-size: 12px;
  color: var(--pink-accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--pink-soft);
  padding: 2px 10px;
  border-radius: 50px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.9;
}
.service-list {
  font-size: 13px;
  color: var(--text-mid);
}
.service-list li {
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px dashed var(--pink-mid);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--pink-accent);
  font-size: 10px;
  top: 7px;
}

.service-badge-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-dark), var(--pink-accent));
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.service-badge-cert::before {
  content: '★';
  font-size: 10px;
}

/* ===========================
   事務所案内
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  color: var(--pink-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 14.5px;
}

.about-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--white);
  border: 1.5px solid var(--pink-accent);
  border-radius: 50px;
  padding: 5px 16px;
}

.about-info-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-mid);
}
.about-info-box h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-mid);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.info-table tr {
  border-bottom: 1px solid var(--pink-soft);
}
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  padding: 11px 10px 11px 0;
  text-align: left;
  color: var(--pink-dark);
  font-weight: 700;
  white-space: nowrap;
  width: 72px;
  vertical-align: top;
}
/* 英語・中国語版：見出し列を広げて重なりを防止 */
html[lang="en"] .info-table th,
html[lang="zh"] .info-table th {
  width: 116px;
  min-width: 116px;
}
.info-table td {
  padding: 11px 0;
  color: var(--text-mid);
}
.info-table td a {
  font-weight: 700;
  font-size: 17px;
  color: var(--pink-dark);
}

/* ===========================
   代表プロフィール
   =========================== */
.profile-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.profile-photo-area {
  text-align: center;
}
.profile-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(196,96,122,0.25);
}
.profile-initial {
  font-family: 'Noto Serif JP', serif;
  font-size: 72px;
  color: white;
  line-height: 1;
}
.profile-title {
  font-size: 13px;
  color: var(--pink-accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.profile-name-en {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.12em;
}

.profile-section {
  margin-bottom: 28px;
}
.profile-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--pink-mid);
}

.profile-list {
  font-size: 14.5px;
  color: var(--text-mid);
}
.profile-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-list li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--pink-accent);
  font-size: 11px;
}

.degree-badge {
  font-size: 11px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  border: 1px solid var(--pink-accent);
  border-radius: 50px;
  padding: 2px 10px;
  margin-left: 8px;
  white-space: nowrap;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.license-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  background: var(--pink-soft);
  padding: 9px 14px;
  border-radius: 8px;
}
.license-icon {
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 15px;
}

.profile-message {
  background: var(--pink-light);
  border-left: 4px solid var(--pink-accent);
  padding: 18px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 4px;
}

/* ===========================
   他士業との連携
   =========================== */
.coop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.coop-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-mid);
  transition: all var(--transition);
}
.coop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.coop-icon {
  font-size: 44px;
  margin-bottom: 16px;
}
.coop-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.coop-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.85;
}

.coop-note {
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  border-radius: 12px;
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
}

/* ===========================
   さくら研修機構
   =========================== */
.kenshu-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.kenshu-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-accent);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.kenshu-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}
.kenshu-text p {
  font-size: 14.5px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.9;
}
.kenshu-text strong { color: var(--text-dark); }

.kenshu-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kenshu-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--pink-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.kenshu-feature strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.kenshu-feature p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 0;
}

.kenshu-info-box {
  background: linear-gradient(150deg, var(--pink-soft), var(--pink-light));
  border: 1.5px solid var(--pink-mid);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
/* さくら研修機構 ロゴ画像 */
.kenshu-org-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.kenshu-org-logo {
  width: 220px !important;
  height: auto;
  object-fit: contain;
  display: block;
}

.kenshu-icon-large {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.kenshu-info-box h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.kenshu-info-list {
  text-align: left;
  margin-bottom: 20px;
}
.kenshu-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pink-mid);
  font-size: 13.5px;
}
.kenshu-info-list li:last-child { border-bottom: none; }
.kenshu-info-list li span:first-child {
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}
.kenshu-info-list li span:last-child {
  color: var(--text-mid);
  text-align: right;
}
.kenshu-info-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.8;
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
}

/* ===========================
   アクセス
   =========================== */
.access-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.access-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-mid);
}
.access-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
}
.access-label {
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
  min-width: 68px;
}
.access-item span:last-child {
  color: var(--text-mid);
  line-height: 1.8;
}
.access-item small {
  font-size: 12px;
  color: var(--text-light);
}

.tel-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--pink-dark);
}
.tel-note {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.tel-note a {
  color: var(--pink-dark);
  text-decoration: underline;
}
.btn-tel {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}
/* PC表示：フォームボタンを表示、tel発信ボタンを非表示 */
.btn-tel-sp { display: none; }
.btn-tel-pc { display: flex; }
@media (max-width: 768px) {
  /* スマホ：tel発信ボタンを表示、フォームボタンを非表示 */
  .btn-tel-sp { display: flex; }
  .btn-tel-pc { display: none; }
  /* さくら研修機構 見出し：スマホで2行に収める */
  .kenshu-text h3 {
    font-size: 18px !important;
  }
}

.access-map {
  min-height: 460px;
}
.map-embed {
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: 16px;
  display: block;
}
.map-placeholder {
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-light));
  border: 1.5px solid var(--pink-mid);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 32px;
}
.map-pin { font-size: 48px; }
.map-placeholder p {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.map-addr {
  font-size: 13px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 400 !important;
  color: var(--text-mid) !important;
}
.btn-map {
  margin-top: 8px;
  font-size: 14px;
  padding: 10px 24px;
}

/* ===========================
   お問い合わせ
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* PC：電話ボックスを非表示、フォームのみ表示 */
.contact-phone-box {
  display: none;
  background: linear-gradient(150deg, var(--pink-soft), var(--pink-light));
  border: 1.5px solid var(--pink-mid);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
}
.contact-box-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.contact-phone-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.contact-tel {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.contact-hours {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}
.contact-hours small { font-size: 12px; color: var(--text-light); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--pink-mid);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-mid);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.required {
  background: var(--pink-dark);
  color: white;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pink-mid);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 3px rgba(232,130,154,0.15);
}
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.form-success {
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-accent);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-dark);
}

/* ===========================
   フッター
   =========================== */
.site-footer {
  background: var(--text-dark);
  color: var(--gray-mid);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
}
.footer-logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.footer-logo-sub {
  font-size: 12px;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13.5px;
}
.footer-links a {
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink-accent); }

.footer-address {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}
.footer-address a {
  color: var(--pink-mid);
}
.footer-address a:hover { color: var(--pink-accent); }

.footer-copy {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 20px;
  border-top: 1px solid #444;
}

/* ===========================
   言語切り替え
   =========================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--pink-mid);
}
.lang-btn {
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink-dark);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lang-btn:hover {
  background: var(--pink-soft);
  border-color: var(--pink-mid);
  color: var(--pink-dark);
}
.lang-btn.lang-active {
  background: var(--pink-dark);
  color: var(--white);
  border-color: var(--pink-dark);
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 900px) {
  .global-nav  { display: none; }
  .lang-switcher { display: none; }
  .hamburger   { display: flex; }

  /* スマホ：ロゴテキスト折り返し防止 */
  .logo-mark {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
  }
  .logo-mark-sakura {
    height: 29px !important;
    width: auto !important;
  }
  .logo-main {
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }
  .logo-sub {
    display: none;
  }
  .logo { gap: 6px; }
  .logo-text { overflow: visible; }

  /* スマホ：ロゴ+ボタンWrapperを横幅いっぱいに広げてボタンを右端へ */
  .logo-with-sp-btn {
    flex: 1;
    justify-content: space-between;
    margin-right: 12px;
  }

  /* スマホ：最新ニュースボタンを表示 */
  .header-news-btn-sp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #e07050;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.3;
  }
  .header-news-btn-sp:hover {
    background: #c05838;
    color: #fff;
  }
  .news-updated-sp {
    font-size: 8px;
    font-weight: 400;
    opacity: 0.88;
    line-height: 1;
    display: block;
  }

  .service-grid { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .profile-wrapper { grid-template-columns: 1fr; }
  .coop-grid    { grid-template-columns: repeat(2, 1fr); }
  .kenshu-wrapper { grid-template-columns: 1fr; }
  .access-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-phone-box { display: block; }

  .profile-photo-area { display: flex; align-items: center; gap: 24px; }
  .profile-photo-placeholder { width: 120px; height: 120px; flex-shrink: 0; }
  .profile-initial { font-size: 44px; }
  .profile-name-block { text-align: left; }

  .section { padding: 60px 0; }
  .section-title h2 { font-size: 26px; }
  .hero-catch { font-size: 28px; }
  .license-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .contact-form-box { padding: 24px 18px; }
  .about-info-box { padding: 22px 18px; }
  .footer-links { flex-direction: column; }
  .profile-photo-area { flex-direction: column; align-items: center; }
  .profile-name-block { text-align: center; }
}

.sp-br { display: none; }
@media (max-width: 600px) {
  .sp-br { display: inline; }
}

/* ===========================
   ヒーロー 2カラム（イラスト追加）
   =========================== */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
.hero-content { /* left column — no extra styles needed */ }
.hero-illust {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illust svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(196,96,122,0.12));
}
@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
  }
  .hero-illust { display: none; }
}

/* ===========================
   選ばれる3つの理由ストリップ
   =========================== */
/* ===========================
   ヒーロー さくらの木画像
   =========================== */
.hero-sakura-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(196,96,122,0.10));
}

/* ===========================
   事務所案内 書類イラスト
   =========================== */
.about-doc-illust {
  margin-bottom: 24px;
}
.about-doc-illust svg {
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .about-doc-illust svg { width: 220px; }
}

.point-strip {
  background: var(--white);
  padding: 0 0 0;
}
.point-strip-inner {
  background: linear-gradient(120deg, var(--pink-dark) 0%, var(--pink-accent) 100%);
  border-radius: 24px;
  padding: 52px 48px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 60px rgba(196,96,122,0.28);
}
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.point-item {
  text-align: center;
  color: var(--white);
}
.point-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.point-icon svg {
  width: 40px;
  height: 40px;
}
.point-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.point-item p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
}
@media (max-width: 900px) {
  .point-strip-inner { padding: 40px 28px; margin-top: -32px; }
  .point-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===========================
   ご相談の流れ（3ステップ）
   =========================== */
.flow-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}
.flow-step {
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.flow-step:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--pink-accent);
}
.step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pink-dark);
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-mid);
  border-radius: 50px;
  padding: 3px 14px;
  margin-bottom: 18px;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon svg {
  width: 44px;
  height: 44px;
}
.flow-step h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.9;
}
.flow-arrow {
  text-align: center;
  font-size: 28px;
  color: var(--pink-accent);
  line-height: 1;
}
@media (max-width: 900px) {
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .flow-arrow {
    font-size: 24px;
    padding: 8px 0;
    transform: rotate(90deg);
  }
}
