/* =====================================================
   田岡商店 共通スタイルシート
   このファイルを編集すれば、全ページのデザインが変わります
   ===================================================== */

/* ===== カラー設定（ここを変えれば全体の色が変わります） ===== */
:root {
  --orange: #F38401;
  --orange-dark: #D97300;
  --orange-light: #FFF3E0;
  --orange-pale: #FFFAF3;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
  --border: #e8e8e8;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --max-width: 1140px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.sp-br { display: none; }
.pc-br { display: inline; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== 共通ユーティリティ ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.9;
}
.text-center .section-sub { margin: 0 auto; }
.service-intro-title + .section-sub { max-width: 760px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(243,132,1,0.3); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,132,1,0.4); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.95); color: var(--dark); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===== 共通アニメーション ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== 共通アイコン（電話・メールSVG等） ===== */
.icon-svg {
  height: 1.4em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-method-icon .icon-svg {
  height: 36px;
}
.float-btn .icon-svg,
.btn-primary .icon-svg {
  filter: brightness(0) invert(1);
}

/* ===== ヘッダー ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 13px 0 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 7px 0 0;
}
.sample-notice { margin-top: 13px; }
.sample-notice {
  background: #c9a227;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-link:hover::after, .nav-link.current::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.current { color: var(--orange); }
.nav-tel {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 112px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: block; opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.mobile-menu a.cta {
  color: #fff;
  background: var(--orange);
  text-align: center;
  border-radius: 50px;
  margin-top: 24px;
  border: none;
  padding: 16px;
}

/* ===== メインヒーロー（トップページ用） ===== */
#hero-main {
  position: relative;
  height: 100vh;
  min-height: 760px;
  max-height: 940px;
  margin-top: 0;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('./画像/ロープアクセス工法.jpg') center/cover no-repeat;
  z-index: 1;
}
.hero-content-main {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-top: 160px;
}
.hero-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-text-box {
  max-width: 540px;
  padding: 40px 0 0;
}
.hero-badge-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  animation: fadeDown 0.8s ease 0.2s both;
}
.hero-title-main {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeDown 0.8s ease 0.4s both;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(255,255,255,0.55), 0 0 24px rgba(255,255,255,0.35);
}
.hero-title-main em {
  color: var(--orange);
  font-style: normal;
  display: block;
}
.hero-sub-main {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeDown 0.8s ease 0.6s both;
  font-weight: 500;
}
.hero-btns-main {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.8s both;
}
/* ヒーロー内 アワード風バッジ（左側に縦積み） */
.hero-awards {
  position: absolute;
  left: 0; right: 0;
  bottom: 48px;
  z-index: 2;
  max-width: 380px;
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 0.9s ease 1s both;
}
.hero-award-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 12px 16px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-award-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}
.hero-award-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-award-text { flex: 1; min-width: 0; }
.hero-award-title {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}
.hero-award-desc {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
  line-height: 1.4;
}

/* ===== ヒーロー 月桂冠バッジ（3点）===== */
.hero-laurels {
  display: flex;
  gap: 11px;
  margin-top: 20px;
  align-items: stretch;
  animation: fadeUp 0.9s ease 1s both;
}
.hero-feat-card {
  background: rgba(243,132,1,0.06);
  border: 2.4px solid rgba(243,132,1,0.4);
  border-radius: 11px;
  padding: 12px 18px 12px 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
.hero-feat-top {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-feat-icon {
  flex-shrink: 0;
  width: 51px;
  height: 51px;
  object-fit: contain;
  object-position: left center;
  transform: translateX(8px);
}
.hero-feat-title {
  font-size: 1rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
}
.hero-feat-desc {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin-left: 8px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.hero-scroll-indicator svg {
  width: 18px;
  animation: bounce 1.6s ease infinite;
}
.hero-scroll-indicator .scroll-text {
  padding-left: 0.15em;
}

/* ===== サブヒーロー（下層ページ用） ===== */
#sub-hero {
  margin-top: 94px;
  padding: 18px 0 14px;
  background:
    linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#sub-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
#sub-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.sub-hero-inner { position: relative; z-index: 1; text-align: center; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.breadcrumb a { transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }
.sub-hero-title {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
  animation: fadeUp 0.6s ease 0.1s both;
}
.sub-hero-en { display: none; }

/* ===== ティッカー ===== */
.ticker {
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
}
.ticker-inner {
  display: flex;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 32px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.ticker-item::before { content: '◆'; color: var(--orange); margin-right: 14px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== 数字セクション ===== */
.stats {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}
.stat-num .unit { font-size: 1.2rem; font-weight: 700; margin-left: 1px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 6px; }

/* ===== ロープアクセス特集セクション ===== */
.rope-section {
  background: var(--orange-pale);
  position: relative;
  overflow: hidden;
}
.rope-section::before {
  content: 'ROPE ACCESS';
  position: absolute;
  top: 30px; right: -30px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(243,132,1,0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.rope-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rope-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
}
.rope-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.rope-img-wrap > img:not(.rope-badge-float) {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.rope-img-wrap .rope-badge-float {
  position: absolute;
  bottom: -45px;
  right: 24px;
  width: 122px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}
.rope-badge-circle {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #ffb04a, var(--orange) 60%, #c25a00 100%);
  border-radius: 50%;
  border: 4px double #fff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.4), inset 0 -4px 12px rgba(0,0,0,0.2);
}
.rope-badge-mark {
  font-size: 1.4rem;
  color: #ffe9a8;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 2px;
}
.rope-badge-title {
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.rope-badge-sub {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
  opacity: 0.9;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 4px;
}
.rope-badge-ribbon {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #ffb84a;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 4px 14px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.rainbow-block {
  grid-column: 1 / -1;
  margin: 32px 32px 32px;
  padding: 28px;
  background: #fff7ed;
  border: 1px solid var(--orange-pale);
  border-radius: 16px;
}
.rainbow-top {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}
.rainbow-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #f6f6f6;
  aspect-ratio: 4/3;
  object-fit: cover;
  align-self: end;
}
.rainbow-top-body h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--orange);
}
.rainbow-intro-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}
.rainbow-steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 22px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rainbow-step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  text-align: left;
}
.rainbow-step-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: max-content;
}
.rainbow-step-inner > .rainbow-step-head { margin-bottom: 0; }
.rainbow-step-inner > p { margin: 0; }
.rainbow-step-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.rainbow-step-head h6 { text-align: left; }
.rainbow-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.86rem;
}
.rainbow-step-head h6 {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--dark);
  margin: 0;
}
.rainbow-step p {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  text-align: left;
}
.rainbow-step-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.rainbow-pros-cons {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.rainbow-pros, .rainbow-cons {
  background: #FDEEDC;
  padding: 14px 22px;
  border-radius: 12px;
}
.rainbow-pros h5, .rainbow-cons h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 0;
  color: var(--orange);
}
.rainbow-h5-icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}
.rainbow-pros ul, .rainbow-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rainbow-pros li, .rainbow-cons li {
  font-size: 0.88rem;
  line-height: 1.3;
  padding: 3px 0 3px 18px;
  position: relative;
  color: var(--dark);
}
.rainbow-cons li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark);
}
.rainbow-pros li {
  padding-left: 22px;
}
.rainbow-pros li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 2px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.rainbow-pitch {
  background: #fff7ed;
  border: 1.2px solid var(--orange);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 93%;
  justify-self: end;
}
.rainbow-pitch-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1.2px solid var(--orange);
}
.rainbow-pitch-icon {
  flex-shrink: 0;
  width: 56px;
  height: auto;
}
.rainbow-pitch-text {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}
.rainbow-pitch-text strong { color: inherit; font-weight: inherit; }
.rainbow-pitch-cta {
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.rainbow-pitch-cta strong { color: var(--orange); }
.service-detail-ba .service-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 12px;
  position: relative;
}
.service-detail-ba .service-ba-pair::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  z-index: 3;
  pointer-events: none;
}
.service-detail-img.service-detail-ba--vertical {
  background: #fff;
}
.service-detail-ba--vertical .service-ba-pair {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 14px;
  padding: 48px 16px 48px 40px;
}
.service-detail-ba--vertical .service-ba-pair::after {
  left: calc(50% + 12px);
}
.service-detail-ba--vertical figure {
  height: 100%;
}
.service-detail-ba--vertical figure img {
  object-position: center 35%;
}
.service-detail-ba figure {
  position: relative;
  margin: 0;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}
.service-detail-ba figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-ba figcaption {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}
.service-detail-ba figure:nth-of-type(2) figcaption {
  background: var(--orange);
}
.service-price {
  display: block;
  margin: 6px 0 18px;
  line-height: 1.2;
}
.price-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  letter-spacing: -0.01em;
}
.price-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}
.price-tax {
  font-size: 0.72rem;
  color: var(--dark);
  font-weight: 400;
  margin-left: 2px;
}
@media (max-width: 720px) {
  .rainbow-block { margin: 0 16px 24px; padding: 20px; }
  .rainbow-top { grid-template-columns: 1fr; gap: 16px; }
  .rainbow-steps { flex-direction: column; }
  .rainbow-step-arrow { transform: rotate(90deg); align-self: center; }
  .rainbow-pros-cons { grid-template-columns: 1fr; gap: 14px; }
  .rainbow-steps { padding: 16px; }
}
.rope-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.rope-feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 9px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 24px;
}
.rope-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rope-feature-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}
.rope-feature-body { flex: 1; }
.rope-feature-title { font-weight: 900; font-size: 1rem; margin-bottom: 3px; }
.rope-feature-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

/* ===== Philosophy カード（about.html） ===== */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.philosophy-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  overflow: hidden;
}
.philosophy-card-num {
  width: 44px;
  height: 44px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.philosophy-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
  margin: 4px 0 4px;
}
.philosophy-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.85;
  flex: 1;
}
.philosophy-card-img {
  width: calc(100% + 48px);
  max-width: none;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin: 8px 0 0;
}
@media (max-width: 760px) {
  .philosophy-cards { grid-template-columns: 1fr; gap: 16px; }
  .philosophy-card-img { height: 180px; }
}

/* ===== サービスカード ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card:hover .service-link { gap: 8px; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.9rem;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: var(--orange); transform: scale(1.1); }
.service-photo {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: auto;
  margin: -32px -24px 18px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  transition: transform 0.4s;
}
.service-card:hover .service-photo { transform: scale(1.04); }
.service-title { font-weight: 900; font-size: 1.05rem; margin-bottom: 8px; }
.service-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ===== サービス詳細セクション（service.html用） ===== */
.service-detail {
  background: #fff;
  margin-bottom: 80px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  scroll-margin-top: 135px;
}
.service-detail:has(.service-detail-ba--vertical) {
  grid-template-columns: 60% 40%;
}
.service-detail:has(.rainbow-block) { align-items: start; }
.service-detail:has(.rainbow-block) > .service-detail-img { height: 413px; }
.service-detail:has(.rainbow-block) > .service-detail-body { padding-bottom: 0; }
.service-detail:has(.rainbow-block) > .rainbow-block { margin-top: 24px; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-pale));
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-img-icon { font-size: 6rem; opacity: 0.4; }
.service-detail-img.service-detail-ba { background: #fff; }
.service-detail-no {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(243,132,1,0.2);
  line-height: 1;
}
.service-detail-body { padding: 48px 40px; }
.service-detail-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.service-detail-title {
  font-size: 1.92rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-detail-desc {
  color: var(--gray);
  margin-bottom: 22px;
  font-size: 0.93rem;
}
.service-detail-list { display: grid; gap: 8px; }
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.968rem;
  font-weight: 700;
  line-height: 1.32rem;
  padding: 6px 0;
  color: var(--dark);
}
.service-detail-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('./画像/チェックマーク.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 0;
}

/* ===== 施工事例カード ===== */
.works-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
  justify-content: center;
}
.works-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.83rem;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--gray);
  transition: all 0.2s;
}
.works-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.works-tab:hover:not(.active) { border-color: var(--orange); color: var(--orange); }
.works-panel { display: none; animation: fadeUp 0.5s ease; }
.works-panel.active { display: block; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-img {
  height: 220px;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
}
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.work-card:hover .work-img img { transform: scale(1.08); }
.work-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-pale));
}
.work-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}
.work-body { padding: 20px 22px; }
.work-detail-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.work-no { font-size: 0.72rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 6px; }
.work-title { font-weight: 900; font-size: 1rem; margin-bottom: 6px; line-height: 1.5; }
.work-meta { font-size: 0.78rem; color: var(--gray); }

/* ===== Before/After スライダー ===== */
.ba-section { margin-top: 64px; }
.ba-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--gray);
  margin-bottom: 16px;
}
.before-after {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  user-select: none;
  margin: 0 auto;
  max-width: 880px;
}
.before-after-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
}
.ba-after, .ba-before { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ba-after { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.ba-before { background: linear-gradient(135deg, #ffebee, #ffcdd2); }
.ba-clip { position: absolute; top: 0; bottom: 0; left: 0; overflow: hidden; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.ba-handle {
  position: absolute;
  top: 50%;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 900;
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.15em;
  z-index: 4;
}
.ba-tag.before { left: 16px; }
.ba-tag.after { right: 16px; }
.ba-content { text-align: center; padding: 20px; }
.ba-content-icon { font-size: 3.5rem; margin-bottom: 6px; }
.ba-content-title { font-weight: 900; font-size: 1.4rem; margin-bottom: 4px; }
.ba-content-desc { font-size: 0.85rem; }
.ba-after .ba-content { color: #1565c0; }
.ba-before .ba-content { color: #c62828; }

/* ===== プロセス（ご依頼の流れ） ===== */
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange-dark) 100%);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  color: var(--orange);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.process-step-body { /* mobile-only wrapper */ }
.process-step-title { font-weight: 900; font-size: 1rem; margin-bottom: 8px; }
.process-step-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}
.faq-q:hover { background: var(--orange-pale); }
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.faq-arrow {
  margin-left: auto;
  transition: transform 0.3s;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 28px 22px 72px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.85;
}
.faq-item.open .faq-a { display: block; animation: fadeUp 0.3s ease; }

/* ===== CTAセクション ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::before { top: -100px; right: -50px; width: 300px; height: 300px; }
.cta-section::after { bottom: -80px; left: -50px; width: 240px; height: 240px; }
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-section p { font-size: 1rem; margin-bottom: 28px; opacity: 0.95; }
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== お問い合わせフォーム ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block {
  background: var(--light-gray);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info-block h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 16px; color: var(--dark); }
.contact-info-block p { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }
.contact-info-tel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}
.contact-info-tel-label { font-size: 0.75rem; color: var(--gray); margin-bottom: 4px; }
.contact-info-tel-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.04em;
  display: block;
}
.contact-info-tel-sub { font-size: 0.75rem; color: var(--gray); margin-top: 4px; }
.contact-info-list { margin-top: 24px; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--dark);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ico { color: var(--orange); font-weight: 900; min-width: 80px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-weight: 900; font-size: 1.2rem; margin-bottom: 8px; }
.contact-form .form-intro { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-label .req {
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: #fafafa;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243,132,1,0.12);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-radios { display: flex; gap: 12px; flex-wrap: wrap; }
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  background: #fff;
  transition: all 0.2s;
}
.form-radio input { display: none; }
.form-radio:has(input:checked), .form-radio.checked {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
}
.form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(243,132,1,0.3);
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,132,1,0.4); }
.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* ===== 会社案内・代表挨拶 ===== */
.greeting-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.greeting-photo {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-pale));
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.greeting-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 28px 24px 20px;
}
.greeting-name-position { font-size: 0.78rem; opacity: 0.85; margin-bottom: 4px; }
.greeting-name-jp { font-size: 1.2rem; font-weight: 900; }
.greeting-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}
.greeting-text p {
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 2;
  font-size: 0.95rem;
}
.greeting-sign {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

/* ===== 会社概要テーブル ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.company-table th, .company-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  background: var(--orange-pale);
  color: var(--dark);
  font-weight: 700;
  width: 200px;
  border-right: 1px solid var(--border);
}
.company-table td { color: var(--gray); }

/* ===== 沿革 ===== */
.timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--orange);
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-weight: 900;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.timeline-text { font-size: 0.92rem; color: var(--dark); }

/* ===== 地図 ===== */
.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--orange-light), var(--orange-pale));
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
}
.map-wrap .ico { font-size: 3rem; color: var(--orange); }

/* ===== お客様の声 ===== */
.voice-slider { position: relative; }
.voice-grid {
  display: flex;
  gap: 22px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 16px;
  scrollbar-width: none;
}
.voice-grid::-webkit-scrollbar { display: none; }
.voice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  flex: 0 0 calc((100% - 66px) / 3.3);
  scroll-snap-align: start;
}
.voice-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.voice-arrow {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s, transform 0.2s;
}
.voice-arrow:hover {
  color: #ffa744;
  transform: scale(1.35);
}
.voice-arrow svg { width: 29px; height: 29px; stroke-width: 3.2; }
.voice-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.voice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d4d4d4;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.voice-dot.active {
  background: var(--orange);
  transform: scale(1.4);
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 4rem;
  color: var(--orange);
  font-family: serif;
  line-height: 1;
}
.voice-img {
  margin: -28px -28px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.voice-card:has(.voice-img)::before { display: none; }
.voice-stars { color: #fbbf24; margin-bottom: 12px; font-size: 1rem; letter-spacing: 0.1em; }
.voice-title { font-weight: 900; font-size: 1rem; margin-bottom: 10px; }
.voice-text { font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.voice-author {
  font-size: 0.78rem;
  color: var(--dark);
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.voice-author span { color: var(--gray); font-weight: 400; margin-left: 6px; }

/* ===== フッター ===== */
footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 24px;
}
.footer-inner {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-brand img { height: 48px; flex-shrink: 0; }
.footer-brand p { font-size: 0.82rem; line-height: 1.85; margin: 0; }
.footer-nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-sns { display: flex; gap: 10px; }
.footer-sns a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.footer-sns a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.88rem; margin-bottom: 18px; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; }
.footer-bottom a { color: var(--orange); }

/* ===== フローティングCTA ===== */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.float-tel-btn { background: var(--orange); }
.float-mail-btn { background: var(--dark); }
.float-ig-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* ===== About イントロ（プロフェッショナル紹介） ===== */
.about-intro {
  background: #fff;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.about-intro-lead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.about-intro-lead h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-intro-lead h2 span { color: var(--orange); }
.about-intro-lead p {
  color: var(--gray);
  line-height: 1.95;
  font-size: 0.95rem;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-intro-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about-intro-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.about-intro-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.about-intro-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Instagram風カード ===== */
.ig-section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  text-align: center;
}
.ig-logo-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ig-logo-circle img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.ig-logo-circle .ig-logo-text {
  font-family: 'Inter', 'Helvetica Neue', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1;
}
.ig-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
}
.ig-section-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.ig-section-title {
  font-family: 'Helvetica Neue', 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.ig-section-head .ig-username {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 700;
}
.ig-section-head .ig-username a { color: var(--orange); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.ig-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  color: inherit;
}
.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ig-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.ig-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  padding: 2px;
  flex-shrink: 0;
}
.ig-avatar div {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-username-block { flex: 1; }
.ig-username-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}
.ig-location {
  font-size: 0.7rem;
  color: var(--gray);
}
.ig-more { color: var(--gray); font-weight: 700; }
.ig-card-img {
  aspect-ratio: 1/1;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
}
.ig-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ig-card:hover .ig-card-img img { transform: scale(1.05); }
.ig-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-pale));
}
.ig-card-img-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.ig-card-body { padding: 12px 14px 14px; }
.ig-card-actions { display: none; }
.ig-card-likes { display: none; }
.ig-card-caption {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-card-caption strong { font-weight: 700; margin-right: 4px; }
.ig-card-time {
  font-size: 0.68rem;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.ig-followcta {
  text-align: center;
  margin-top: 40px;
}
.ig-followcta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-followcta a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.35); }

/* ===== 連絡手段カード（contact.html用） ===== */
/* 電話・Instagram + フォーム 横並びレイアウト */
.contact-top-layout {
  display: grid;
  grid-template-columns: minmax(0, 600px) 300px;
  gap: 32px;
  align-items: start;
  justify-content: center;
}
.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 3つの連絡手段カード（contact.html上部） */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-method-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 700;
}
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.contact-method-tel,
.contact-method-ig {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-method-form { background: #2d6a4f; }
.contact-method-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.contact-method-label {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.contact-method-num {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 2px 0;
}
.contact-method-sub {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 500;
  line-height: 1.4;
}
.contact-method-sub .paren-line {
  display: inline-block;
  margin-left: -0.45em;
}
@media (max-width: 760px) {
  .contact-methods { grid-template-columns: 1fr; }
  .contact-top-layout { grid-template-columns: 1fr; }
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-channel-tel { background: var(--orange); }
.contact-channel-mail { background: var(--dark); }
.contact-channel-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.contact-channel-icon { font-size: 1.8rem; }
.contact-channel-label { font-size: 0.7rem; opacity: 0.85; }
.contact-channel-main { font-size: 0.95rem; font-weight: 900; }

/* ===== レスポンシブ ===== */
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .rope-layout { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-detail { grid-template-columns: 1fr; scroll-margin-top: 153px; }
  .greeting-layout { grid-template-columns: 1fr; }
  .voice-card { flex: 0 0 85%; }
  .form-row { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-channels { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .works-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 0; }
  .service-title { font-size: 0.95rem; }
  .service-desc { font-size: 0.78rem; }
  .rope-feature-icon img { width: 70px; height: 70px; }
  .footer-inner { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: none; }
  .ig-card-img { aspect-ratio: 5/4; }
  .ig-card-header { display: none; }
  .ig-card-likes { display: none; }
  .sp-br { display: inline; }
  .process-steps { flex-direction: column; gap: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .process-steps::before { top: 30px; bottom: 30px; left: 29px; right: auto; width: 2px; height: auto; background: linear-gradient(to bottom, var(--orange) 0%, var(--orange-dark) 100%); }
  .process-step { display: flex; align-items: center; gap: 18px; text-align: left; padding: 0; flex: none; }
  .process-num { margin: 0; flex-shrink: 0; width: 61px; height: 61px; font-size: 1.05rem; border-width: 2px; }
  .process-step-body { flex: 1; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn { width: 280px; max-width: 100%; }
  .ticker-inner { animation-duration: 6s; }
  .ticker-item { padding: 0 13px; }
  .ticker-item::before { margin-right: 7px; }
  .stats { padding: 21px 0; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 15px; }
  .rope-img-wrap .rope-badge-float { width: 98px; right: 8px; }
  .stat-item { display: flex; align-items: baseline; justify-content: flex-start; gap: 10px; padding: 0 20px; border-right: none; border-bottom: none; text-align: left; line-height: 1.2; }
  .stat-num { font-size: 1.5rem; min-width: 90px; justify-content: flex-start; line-height: 1.1; }
  .stat-num .unit { font-size: 1rem; }
  .stat-label { margin-top: 0; font-size: 0.95rem; line-height: 1.2; }
  .hero-awards { position: static; margin-left: 0; padding: 24px 16px; animation: none; max-width: none; }
  .hero-laurels { display: none; }
  .hero-feat-card { flex: none; }
  .hero-award-card { border-left-width: 3px; }
  /* Mobile hero: image with text overlaid in lower-left, buttons below image */
  #hero-main { height: auto; min-height: 0; max-height: none; aspect-ratio: auto; margin-top: 112px; position: relative; display: grid; grid-template-areas: "image" "buttons"; grid-template-rows: auto auto; }
  #sub-hero { margin-top: 112px; }
  #hero-main .hero-img { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1819 / 1956; background-image: url('./画像/ロープアクセス工法_スマホ.jpg'); background-size: cover; background-position: center; grid-area: image; }
  .hero-content-main { display: contents; background: transparent; padding: 0; position: static; inset: auto; }
  .hero-content-inner { display: contents; padding: 0; max-width: none; }
  .hero-text-box { grid-area: image; align-self: end; padding: 0 22px 24px; max-width: 70%; z-index: 2; pointer-events: none; }
  .hero-scroll-indicator { display: none; }
  .hero-title-main { font-size: 2rem; margin-bottom: 12px; line-height: 1.2; text-shadow: 0 0 14px rgba(255,255,255,0.85), 0 0 24px rgba(255,255,255,0.6); }
  .hero-sub-main { margin-bottom: 0; font-size: 0.88rem; line-height: 1.65; text-shadow: 0 0 10px rgba(255,255,255,0.85); }
  .hero-btns-main { grid-area: buttons; flex-direction: column; align-items: stretch; gap: 12px; padding: 24px 22px; background: #fff; margin: 0; }
  .hero-btns-main .btn { width: 100%; }
  .service-detail-body { padding: 32px 24px; }
  .service-detail:has(.service-detail-ba--vertical) { grid-template-columns: 1fr; }
  .service-detail-img { min-height: 0; height: auto; }
  .service-detail-ba .service-ba-pair { height: auto; }
  .service-detail-ba figure { height: auto; aspect-ratio: 914 / 905; }
  .service-detail-ba figure img { height: 100%; }
  .service-detail-ba--vertical .service-ba-pair { padding: 12px; gap: 8px; }
  .service-detail-ba--vertical .service-ba-pair::after { left: 50%; }
  .service-detail:not(:has(.service-detail-ba)) .service-detail-img { aspect-ratio: 800 / 532; background: #fff; }
  .service-detail:not(:has(.service-detail-ba)) .service-detail-img img { height: 100%; }
  .service-detail:has(.rainbow-block) > .service-detail-img { height: auto; }
  .service-detail:has(.rainbow-block) > .service-detail-body { padding-bottom: 48px; }
  .service-detail:has(.rainbow-block) > .rainbow-block { margin-top: 0; }
  .service-detail-img.service-detail-ba { background: #fff; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav > ul { flex-direction: column; gap: 10px; }
  .greeting-photo { width: 65%; margin: 0 auto; }
  .greeting-text h3 { font-size: 1.3rem; }
  .greeting-text p { text-align: justify; font-size: 0.88rem; line-height: 1.85; }
  .section-title { font-size: 1.5rem; letter-spacing: 0; }
  .philosophy-card-desc { font-size: 0.78rem; }
  .timeline-text { font-size: 0.85rem; }
  .service-intro-title { font-size: 1.25rem; line-height: 1.4; letter-spacing: 0; }
  .pc-br { display: none; }
  .rainbow-step-inner { width: auto; align-items: flex-start; }
  .rainbow-step p { font-size: 0.82rem; }
  .rainbow-step-head h6 { font-size: 0.92rem; }
  .rainbow-pitch { width: 100%; justify-self: stretch; }
  .rainbow-pitch-cta { white-space: normal; font-size: 0.95rem; line-height: 1.5; }
  .rainbow-pitch-text { font-size: 0.82rem; line-height: 1.6; }
  .service-detail-list li { font-size: 0.9rem; }
  .service-detail-body { padding: 28px 18px; }
  .rainbow-block { margin: 0; padding: 18px 12px; }
  .rainbow-steps { padding: 14px 12px; }
  .rainbow-intro-text { font-size: 0.82rem; line-height: 1.6; }
  .rainbow-step p { padding-left: 32px; }
  .rainbow-pitch { padding: 14px 14px; }
  .rainbow-pitch-top { gap: 10px; }
  .rainbow-pitch-icon { width: 44px; }
  .rainbow-pitch-text { font-size: 0.78rem; }
  .service-detail-ba .service-ba-pair::after { width: 31px; height: 31px; }
  .rainbow-top { display: flex; flex-direction: column; }
  .rainbow-top-body { display: contents; }
  .rainbow-top-body h4 { order: 1; }
  .rainbow-top-body .rainbow-intro-text { order: 2; }
  .rainbow-top > picture { order: 3; align-self: center; width: 70%; }
  .rainbow-img { width: 100%; aspect-ratio: auto; }
  .rainbow-top-body .rainbow-steps { order: 4; margin-top: 8px; }
  .contact-form { padding: 24px; }
  .contact-info-block { padding: 28px 24px; }
  .company-table th { width: 110px; padding: 14px; }
  .company-table td { padding: 14px; }
  .float-btn span:not(.float-btn-icon) { display: none; }
  .float-btn { padding: 0; width: 48px; height: 48px; justify-content: center; gap: 0; }
  .float-btn .float-btn-icon { display: flex; align-items: center; justify-content: center; line-height: 0; }
  .float-btn .float-btn-icon img { display: block; vertical-align: middle; margin: 0; }
}
