@charset "utf-8";
/* ==========================================================================
   법률사무소 올본 — sub.css (서브 페이지 공통)
   ========================================================================== */

.sub-body { padding: 100px 0 120px; }
.sub-body--tight { padding-bottom: 90px; }

/* --------------------------------------------------------------------------
   1. 업무분야 : 좌측 사이드 메뉴 + 본문
   -------------------------------------------------------------------------- */
.pract-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.pract-side { position: sticky; top: 100px; }
.pract-side__title {
  padding: 24px 22px; background: var(--navy); color: #fff;
  border-radius: var(--r-md) var(--r-md) 0 0; font-size: 20px;
}
.pract-side__title span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-light); }
.pract-side__list { border: 1px solid var(--gray-line); border-top: 0; border-radius: 0 0 var(--r-md) var(--r-md); overflow: hidden; }
.pract-side__list li + li { border-top: 1px solid var(--gray-line); }
.pract-side__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; font-size: 16px; font-weight: 500; color: #444; background: #fff;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pract-side__list a::after {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); opacity: 0.4;
}
.pract-side__list a:hover { background: var(--gray-bg); color: var(--gold-text); }
.pract-side__list .is-active a { background: var(--gray-bg); color: var(--gold-text); font-weight: 700; }
.pract-side__cta {
  margin-top: 18px; padding: 24px 22px; background: var(--gray-bg);
  border-radius: var(--r-md); text-align: center;
}
.pract-side__cta p { font-size: 14px; color: var(--gray-text); }
.pract-side__cta .tel { display: block; margin: 6px 0 14px; font-size: 23px; font-weight: 800; color: var(--navy); }

/* 본문 공통 블록 */
.blk + .blk { margin-top: 72px; }
.blk__head { margin-bottom: 26px; }
.blk__num { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--gold-text); }
.blk__title { margin-top: 6px; font-size: 28px; color: var(--navy); }
.blk__title::after { content: ""; display: block; width: 34px; height: 2px; margin-top: 14px; background: var(--gold); }
.blk__lead { font-size: 17px; line-height: 1.85; color: #444; }
.blk__lead + .blk__lead { margin-top: 14px; }
.blk__lead b { color: var(--navy); font-weight: 700; }

/* 페이지 상단 인트로 박스 */
.field-intro {
  display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center;
  padding: 40px; background: var(--gray-bg); border-radius: var(--r-md);
}
.field-intro__visual .ph { aspect-ratio: 4 / 3; border-radius: var(--r-md); }

/* 주요 취급 사건 유형 : 아이콘 그리드 */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.type-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 28px 14px; text-align: center;
  background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.type-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.type-item__icon {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: var(--gray-bg); border-radius: 50%; color: var(--navy);
}
.type-item__icon svg { width: 22px; height: 22px; fill: currentColor; }
.type-item span { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.45; }

/* 올본의 접근 방식 : 3포인트 */
.point-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.point-item { padding: 32px 28px; background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md); }
.point-item__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-bottom: 16px;
  background: var(--navy); color: var(--gold-light); border-radius: 50%;
  font-size: 14px; font-weight: 800;
}
.point-item h4 { font-size: 19px; color: var(--navy); }
.point-item p { margin-top: 10px; font-size: 15.5px; line-height: 1.75; color: var(--gray-text); }

/* 하단 CTA 배너 */
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  margin-top: 72px; padding: 44px 46px;
  background: linear-gradient(120deg, #0f2540 0%, #1c3d63 100%);
  border-radius: var(--r-md); color: #fff;
}
.cta-banner__title { font-size: 26px; }
.cta-banner__desc { margin-top: 8px; font-size: 16px; color: rgba(255, 255, 255, 0.75); }
.cta-banner__btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* 신뢰 배너 (IP 전용) */
.trust-banner {
  display: grid; grid-template-columns: 1fr; gap: 26px;
  padding: 42px 44px; margin-bottom: 60px;
  background: linear-gradient(120deg, #0f2540 0%, #17385c 100%);
  border-radius: var(--r-md); color: #fff;
}
.trust-banner__title { font-size: 26px; line-height: 1.45; }
.trust-banner__title .pt { color: var(--gold-light); }
.trust-banner__desc { margin-top: 12px; font-size: 16px; line-height: 1.8; color: rgba(255, 255, 255, 0.78); }
.trust-banner__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-banner__list li {
  padding: 22px 20px; background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--r-sm);
}
.trust-banner__list strong { display: block; font-size: 17px; color: var(--gold-light); }
.trust-banner__list span { display: block; margin-top: 6px; font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   2. 탭 (지식재산권 4개 분야)
   -------------------------------------------------------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; border-bottom: 1px solid var(--gray-line); }
.tabs button {
  position: relative; padding: 14px 26px; font-size: 17px; font-weight: 600; color: var(--gray-text);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.tabs button::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.tabs button:hover { color: var(--navy); }
.tabs button.is-active { color: var(--navy); font-weight: 700; }
.tabs button.is-active::after { transform: scaleX(1); }

.tab-panel__desc { font-size: 16.5px; line-height: 1.85; color: #444; margin-bottom: 24px; }
.tab-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tab-list li {
  display: flex; gap: 12px; padding: 20px 22px;
  background: var(--gray-bg); border-radius: var(--r-sm);
}
.tab-list__no { flex: none; font-size: 13px; font-weight: 800; color: var(--gold-text); padding-top: 3px; }
.tab-list strong { display: block; font-size: 16.5px; color: var(--navy); }
.tab-list p { margin-top: 5px; font-size: 14.5px; line-height: 1.7; color: var(--gray-text); }

/* --------------------------------------------------------------------------
   3. 대표 변호사 소개 : 프로필 + 타임라인
   -------------------------------------------------------------------------- */
.profile { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: start; }
.profile__photo .ph { aspect-ratio: 4 / 5; border-radius: var(--r-md); }
.profile__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile__name { font-size: 38px; color: var(--navy); }
.profile__name span { margin-left: 12px; font-size: 17px; font-weight: 500; color: var(--gray-text); letter-spacing: 0.04em; }
.profile__quote {
  margin: 26px 0; padding: 28px 30px; background: var(--gray-bg);
  border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 18px; font-weight: 600; line-height: 1.75; color: var(--navy);
}
.profile__quote p + p { margin-top: 12px; font-size: 16px; font-weight: 400; color: #4a5360; }
.profile__contact { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; font-size: 15.5px; color: var(--gray-text); }
.profile__contact b { color: var(--navy); }

/* 타임라인 */
.tl-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; }
.tl-groups .tl-group--career { grid-column: span 2; }
.tl-group__title {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  font-size: 22px; color: var(--navy);
}
.tl-group__title span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-text);
  padding: 4px 10px; border: 1px solid rgba(176, 141, 87, 0.5); border-radius: 100px;
}

.tl { position: relative; padding-left: 26px; }
.tl::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--gray-line); }
.tl li { position: relative; padding: 0 0 22px; }
.tl li:last-child { padding-bottom: 0; }
.tl li::before {
  content: ""; position: absolute; left: -26px; top: 9px; width: 11px; height: 11px;
  background: #fff; border: 2px solid var(--gold); border-radius: 50%;
}
.tl__year { font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-text); }
.tl__title { margin-top: 2px; font-size: 17px; font-weight: 700; color: var(--navy); }
.tl__desc { margin-top: 4px; font-size: 15px; line-height: 1.7; color: var(--gray-text); }

/* 경력 타임라인(강조형) */
.tl--career li::before { background: var(--navy); border-color: var(--navy); }
.tl--career li.is-ip::before { background: var(--gold); border-color: var(--gold); }
.tl--career .tl__badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px; margin-left: 8px;
  border-radius: 100px; font-size: 12px; font-weight: 700;
  background: rgba(176, 141, 87, 0.14); color: var(--gold-dark);
}
.tl-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 18px; font-size: 13.5px; color: var(--gray-text); }
.tl-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: -1px; }
.tl-legend .ip { background: var(--gold); }
.tl-legend .law { background: var(--navy); }

/* 강점 요약 3칸 */
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strength-item { padding: 34px 30px; background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md); }
.strength-item__icon { width: 50px; height: 50px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--gold-light); border-radius: 50%; }
.strength-item__icon svg { width: 24px; height: 24px; fill: currentColor; }
.strength-item h3 { font-size: 20px; color: var(--navy); }
.strength-item p { margin-top: 10px; font-size: 15.5px; line-height: 1.75; color: var(--gray-text); }

/* --------------------------------------------------------------------------
   4. 성공사례 : 필터 / 카드 / 페이지네이션 / 상세
   -------------------------------------------------------------------------- */
.case-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.case-filter button {
  min-height: 46px; padding: 0 24px; border: 1px solid var(--gray-line); border-radius: 100px;
  background: #fff; font-size: 15.5px; font-weight: 600; color: var(--gray-text);
  transition: all var(--dur) var(--ease);
}
.case-filter button:hover { border-color: var(--navy); color: var(--navy); }
.case-filter button.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  display: flex; flex-direction: column; padding: 32px 30px 28px;
  background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card__result { margin: 16px 0 12px; font-size: 20px; font-weight: 700; line-height: 1.45; color: var(--navy); }
.case-card__desc {
  font-size: 15px; line-height: 1.7; color: var(--gray-text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.case-card__foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.case-card__date { font-size: 13.5px; color: #9aa1ab; }
.case-empty { padding: 80px 0; text-align: center; color: var(--gray-text); }

.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 52px; }
.pager button {
  min-width: 42px; height: 42px; padding: 0 10px; border: 1px solid var(--gray-line); border-radius: var(--r-sm);
  background: #fff; font-size: 15px; font-weight: 600; color: var(--gray-text);
  transition: all var(--dur) var(--ease);
}
.pager button:hover:not(:disabled) { border-color: var(--navy); color: var(--navy); }
.pager button.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.pager button:disabled { opacity: 0.35; cursor: default; }

/* 사례 상세 */
.case-view__head { padding-bottom: 30px; margin-bottom: 40px; border-bottom: 2px solid var(--navy); }
.case-view__title { margin: 16px 0 12px; font-size: 32px; color: var(--navy); line-height: 1.4; }
.case-view__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14.5px; color: var(--gray-text); }
.case-view__table { margin: 0 0 40px; border-top: 1px solid var(--navy); }
.case-view__table th, .case-view__table td {
  padding: 16px 20px; border-bottom: 1px solid var(--gray-line); font-size: 15.5px; text-align: left; vertical-align: top;
}
.case-view__table th { width: 160px; background: var(--gray-bg); color: var(--navy); font-weight: 700; }
.case-view__body h3 { margin: 36px 0 12px; font-size: 20px; color: var(--navy); }
.case-view__body h3:first-child { margin-top: 0; }
.case-view__body p { font-size: 16px; line-height: 1.85; color: #444; }
.case-view__body p + p { margin-top: 10px; }
.case-view__nav { display: flex; gap: 10px; justify-content: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   5. 상담안내 : 절차 / 비용 / 준비서류 / FAQ
   -------------------------------------------------------------------------- */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-item { position: relative; padding: 34px 26px 30px; background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md); }
.step-item + .step-item::before {
  content: ""; position: absolute; left: -17px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--gold); border-top: 2px solid var(--gold); transform: translateY(-50%) rotate(45deg);
}
.step-item__num { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; color: var(--gold-text); }
.step-item h3 { margin-top: 10px; font-size: 19px; color: var(--navy); }
.step-item p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: var(--gray-text); }

.cost-table { border-top: 2px solid var(--navy); }
.cost-table th, .cost-table td { padding: 18px 20px; border-bottom: 1px solid var(--gray-line); font-size: 15.5px; text-align: left; vertical-align: top; }
.cost-table thead th { background: var(--gray-bg); color: var(--navy); font-weight: 700; }
.cost-table td strong { color: var(--navy); }

.doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc-list li {
  display: flex; gap: 12px; padding: 20px 22px; background: var(--gray-bg); border-radius: var(--r-sm);
}
.doc-list li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.doc-list strong { display: block; font-size: 16px; color: var(--navy); }
.doc-list p { margin-top: 4px; font-size: 14.5px; line-height: 1.65; color: var(--gray-text); }

/* FAQ 아코디언 */
.acc { border-top: 1px solid var(--navy); }
.acc__item { border-bottom: 1px solid var(--gray-line); }
.acc__q {
  display: flex; align-items: center; gap: 16px; width: 100%; padding: 22px 4px; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--navy);
}
.acc__q .q { flex: none; font-size: 17px; font-weight: 800; color: var(--gold-text); }
.acc__q .arw {
  flex: none; margin-left: auto; width: 11px; height: 11px;
  border-right: 2px solid var(--gray-text); border-bottom: 2px solid var(--gray-text);
  transform: rotate(45deg) translateY(-3px); transition: transform var(--dur) var(--ease);
}
.acc__item.is-open .acc__q { color: var(--gold-text); }
.acc__item.is-open .acc__q .arw { transform: rotate(-135deg) translateY(-3px); border-color: var(--gold-text); }
.acc__a { display: none; padding: 4px 4px 26px 37px; font-size: 15.5px; line-height: 1.85; color: #4a5360; }
.acc__item.is-open .acc__a { display: block; }
.acc__a p + p { margin-top: 10px; }

/* --------------------------------------------------------------------------
   6. 인사말 / 오시는 길
   -------------------------------------------------------------------------- */
.greeting { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.greeting__photo .ph { aspect-ratio: 3 / 4; border-radius: var(--r-md); }
.greeting__title { font-size: 32px; line-height: 1.45; color: var(--navy); }
.greeting__title .pt { color: var(--gold-dark); }
.greeting__text { margin-top: 26px; font-size: 16.5px; line-height: 1.95; color: #444; }
.greeting__text p + p { margin-top: 18px; }
.greeting__text b { color: var(--navy); font-weight: 700; }
.greeting__sign { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--gray-line); text-align: right; }
.greeting__sign span { font-size: 15.5px; color: var(--gray-text); }
.greeting__sign strong { display: inline-block; margin-left: 10px; font-size: 22px; color: var(--navy); }
.greeting__sign strong em { font-style: normal; font-size: 15px; font-weight: 500; color: var(--gray-text); margin-left: 6px; }

.philosophy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.philosophy-item { padding: 38px 32px; background: #fff; border: 1px solid var(--gray-line); border-radius: var(--r-md); text-align: center; }
.philosophy-item__ko { font-size: 26px; font-weight: 800; color: var(--navy); }
.philosophy-item__en { margin-top: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-text); }
.philosophy-item p { margin-top: 16px; font-size: 15.5px; line-height: 1.8; color: var(--gray-text); }

.location-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.location-info { border-top: 2px solid var(--navy); }
.location-info > div { display: flex; gap: 20px; padding: 18px 6px; border-bottom: 1px solid var(--gray-line); }
.location-info dt { flex: none; width: 110px; font-weight: 700; color: var(--navy); font-size: 15.5px; }
.location-info dd { font-size: 15.5px; color: #444; line-height: 1.7; }
.transit { margin-top: 30px; }
.transit__item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--gray-line); }
.transit__badge {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  min-width: 58px; height: 28px; padding: 0 10px; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; font-size: 12.5px; font-weight: 700;
}
.transit__badge--bus { background: var(--gold); }
.transit__text { font-size: 15px; line-height: 1.7; color: #444; }

/* --------------------------------------------------------------------------
   반응형
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sub-body { padding: 70px 0 90px; }
  .pract-layout { grid-template-columns: 1fr; gap: 36px; }
  .pract-side { position: static; }
  .pract-side__list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .pract-side__list li + li { border-top: 0; border-left: 1px solid var(--gray-line); }
  .pract-side__list li:nth-child(3n+1) { border-left: 0; }
  .pract-side__list li:nth-child(n+4) { border-top: 1px solid var(--gray-line); }
  .pract-side__cta { display: none; }

  .field-intro { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .type-grid { grid-template-columns: repeat(3, 1fr); }
  .point-grid, .strength-grid, .philosophy { grid-template-columns: 1fr; }
  .trust-banner__list { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; gap: 36px; }
  .profile__photo { max-width: 360px; }
  .tl-groups { grid-template-columns: 1fr; gap: 34px; }
  .tl-groups .tl-group--career { grid-column: span 1; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .step-item:nth-child(3)::before { display: none; }
  .greeting { grid-template-columns: 1fr; gap: 34px; }
  .greeting__photo { max-width: 320px; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .sub-body { padding: 50px 0 70px; }
  .blk + .blk { margin-top: 52px; }
  .blk__title { font-size: 23px; }
  .blk__lead { font-size: 16px; }
  .field-intro { padding: 24px 20px; }
  .type-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tab-list, .doc-list { grid-template-columns: 1fr; }
  .tabs { gap: 0; }
  .tabs button { flex: 1 1 auto; padding: 12px 8px; font-size: 15px; }
  .trust-banner, .cta-banner { padding: 28px 22px; }
  .trust-banner__title { font-size: 21px; }
  .cta-banner__title { font-size: 21px; }
  .cta-banner__btns { width: 100%; }
  .cta-banner__btns .btn { flex: 1 1 auto; }
  .profile__name { font-size: 30px; }
  .profile__quote { padding: 22px 20px; font-size: 16.5px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-view__title { font-size: 25px; }
  .case-view__table th { width: 104px; padding: 14px 12px; }
  .case-view__table td { padding: 14px 12px; }
  .step-grid { grid-template-columns: 1fr; }
  .step-item + .step-item::before { left: 50%; top: -17px; transform: translateX(-50%) rotate(135deg); }
  .step-item:nth-child(3)::before { display: block; }
  .greeting__title { font-size: 24px; }
  .greeting__text { font-size: 15.5px; }
  .cost-table th, .cost-table td { padding: 13px 12px; font-size: 14.5px; }
  .location-info dt { width: 84px; font-size: 14.5px; }
  .location-info dd { font-size: 14.5px; }
  .pract-side__list { grid-template-columns: repeat(2, 1fr); }
  .pract-side__list li:nth-child(3n+1) { border-left: 1px solid var(--gray-line); }
  .pract-side__list li:nth-child(2n+1) { border-left: 0; }
  .pract-side__list li:nth-child(n+3) { border-top: 1px solid var(--gray-line); }
  .pract-side__list a { padding: 13px 16px; font-size: 15px; }
}
