/* ===================================================
   HOVERS – style.css
   =================================================== */

/* ---------- CSS変数 ---------- */
:root {
  --yellow:     #f1be24;
  --black:      #111111;
  --text:       #333333;
  --muted:      #8d8d8d;
  --line:       #e9e9e9;
  --footer-bg:  #131313;
  --footer-txt: #d4d4d4;
  --white:      #ffffff;
  --shadow:     0 6px 24px rgba(0,0,0,0.09);
  --max:        1180px;
  --header-h:   126px;
  --hero-h:     min(88vh, 720px);
  --radius:     2px;
  --trans:      0.25s ease;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- ユーティリティ ---------- */
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow); }

/* --- Topbar --- */
.topbar { border-bottom: 1px solid var(--line); }
.topbar-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 200px 1fr auto auto auto auto;
  align-items: center;
  gap: 20px;
}
.logo img { width: 148px; height: auto; }

/* 言語切替 */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
}
.lang-switch a {
  padding: 4px 10px; border-radius: 3px;
  transition: background .2s, color .2s;
}
.lang-switch a.active {
  background: var(--black); color: var(--white);
}
.lang-switch a:not(.active):hover {
  background: #f0f0f0;
}

/* 検索 */
.search-wrap {
  justify-self: center;
  width: min(100%, 340px);
  position: relative;
}
.search-wrap input {
  width: 100%;
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 0 46px 0 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color var(--trans);
}
.search-wrap input:focus { border-color: #aaa; }
.search-wrap button {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  border: 0; background: transparent;
  font-size: 18px; color: #8c8c8c; cursor: pointer;
}

/* 電話 */
.phone-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.phone-icon {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--black); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex: 0 0 auto;
}
.phone-wrap span { font-size: 26px; line-height: 1; letter-spacing: .02em; }

/* お問い合わせボタン */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  background: var(--black); color: var(--white);
  padding: 0 18px;
  font-size: 15px; font-weight: 700;
  white-space: nowrap;
  transition: background var(--trans);
}
.contact-btn:hover { background: #333; }
.contact-btn .icon { color: var(--yellow); font-size: 16px; }

/* LINE */
.line-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 48px; padding: 0 20px;
  background: #06C755; color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 6px; transition: opacity .2s;
}
.line-btn:hover { opacity: .85; }
.line-icon { width: 24px; height: 24px; }

/* --- Menubar --- */
.menubar { border-bottom: 1px solid var(--line); }
.menubar-inner {
  min-height: 54px;
  display: flex; align-items: stretch; justify-content: center;
}
.main-nav > ul {
  display: flex; align-items: stretch; justify-content: center;
}
.main-nav > ul > li {
  position: relative;
  min-width: 130px; text-align: center;
}
.main-nav > ul > li > a {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 18px;
  font-size: 15px; position: relative;
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute; left: 18px; right: 18px; bottom: 0;
  height: 2px; background: var(--black);
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease;
}
.main-nav > ul > li:hover > a::after,
.main-nav > ul > li.current > a::after { transform: scaleX(1); }

/* ドロップダウン */
.submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 300px; background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 20; text-align: left;
}
.has-children:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block; padding: 13px 18px; font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.submenu li:last-child a { border-bottom: 0; }
.submenu a:hover { background: #fafafa; }

/* =============================================
   MOBILE HEADER
   ============================================= */
.mobile-tools {
  display: none;
  min-height: 66px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn, .menu-btn {
  width: 40px; height: 40px;
  border-radius: 999px; border: 1px solid #ddd;
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px; cursor: pointer; color: #666;
}
.mobile-panel {
  display: none;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 6px 0 14px;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block; padding: 14px 16px;
  border-bottom: 1px solid var(--line); font-size: 15px;
}
.mobile-panel details summary {
  cursor: pointer; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  list-style: none; font-size: 15px; font-weight: 500;
}
.mobile-panel details summary::-webkit-details-marker { display: none; }
.mobile-panel details a {
  padding-left: 28px; font-size: 14px; background: #fafafa;
}

/* =============================================
   MAIN / HERO
   ============================================= */
main { padding-top: var(--header-h); }

.hero {
  position: relative;
  width: 100%; height: var(--hero-h);
  overflow: hidden; background: #ccc;
}

/* スライド */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-link { display: block; width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
}

/* キャッチコピー（各スライド内） */
.hero-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 20px;
}
.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; font-weight: 900; letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-sub {
  display: inline-block;
  margin-bottom: 22px;
  font-size: clamp(14px, 1.3vw, 20px); font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  background: var(--yellow); color: #222;
  font-weight: 700; font-size: 14px; border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  transition: opacity var(--trans);
}
.hero-btn:hover { opacity: .85; }

/* スライドテキスト：下からポップアップ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-slide .hero-kicker,
.hero-slide .hero-sub,
.hero-slide .hero-btn {
  opacity: 0;
}
.hero-slide.active .hero-kicker {
  animation: slideUp .6s ease forwards;
  animation-delay: .1s;
}
.hero-slide.active .hero-sub {
  animation: slideUp .6s ease forwards;
  animation-delay: .3s;
}
.hero-slide.active .hero-btn {
  animation: slideUp .6s ease forwards;
  animation-delay: .5s;
}

/* 矢印 */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border: 0; background: transparent;
  color: var(--white); font-size: 42px; line-height: 1;
  cursor: pointer; z-index: 4;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
  transition: opacity var(--trans);
}
.hero-arrow:hover { opacity: .7; }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

/* ドット */
.hero-dots {
  position: absolute; left: 50%; bottom: 20px;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  transition: background var(--trans);
}
.hero-dot.active { background: var(--white); }

/* =============================================
   SECTIONS
   ============================================= */
.intro-band {
  padding: 28px 16px 10px; text-align: center;
}
.intro-band h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 38px); font-weight: 700; line-height: 1.6;
}

.section { padding: 60px 0 0; }

.section-head { margin-bottom: 32px; }
.heading-ja {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 900; line-height: 1.2;
}
.heading-en {
  margin: 8px 0 0;
  font-size: 22px; font-weight: 500; color: #aaa;
  letter-spacing: .06em; text-transform: uppercase;
}

/* --- サービスグリッド --- */
.service-wrap { position: relative; margin-top: 30px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* サービスカテゴリ */
.service-category {
  margin-bottom: 48px;
}
.service-category-label {
  display: inline-block; padding: 6px 16px;
  background: var(--yellow); color: #222;
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em; margin-bottom: 20px;
}
.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24 / 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 55%, #1a1a1a 100%);
  border: 1px solid #222;
}
.service-card-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(241,190,36,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.04) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.service-card-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18%;
  filter: grayscale(85%) contrast(1.05) brightness(.95);
  transition: transform .5s ease, filter .5s ease, padding .5s ease;
  z-index: 0;
}
.service-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1) brightness(1);
}
.service-card-category {
  display: inline-block;
  background: var(--yellow); color: #222;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; padding: 5px 12px;
  margin-top: 20px;
}
.service-card-title {
  margin-top: 12px; font-size: clamp(18px, 2vw, 26px);
  font-weight: 900; line-height: 1.35; color: #111;
}
.service-card-en {
  margin-top: 6px; font-size: 12px; color: #999;
  letter-spacing: .12em; text-transform: uppercase;
}
.service-card-desc {
  margin-top: 10px; font-size: 12.5px; color: #555;
  line-height: 1.7; letter-spacing: .03em;
}

/* スライドナビ（モバイル用） */
.service-arrow, .news-arrow {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 999px; border: 0;
  background: var(--yellow); color: #555; font-size: 26px;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  z-index: 2;
}
.service-arrow.prev, .news-arrow.prev { left: -6px; }
.service-arrow.next, .news-arrow.next { right: -6px; }

/* --- 区切り --- */
.divider { margin: 60px 0 0; border-top: 3px double #ededed; }

/* =============================================
   PRESIDENT BANNER（代表メッセージバナー）
   ============================================= */
.president-banner {
  display: grid !important;
  grid-template-columns: 380px 1fr;
  align-items: stretch;
  background: #111;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.president-banner:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.president-banner-img {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
}
.president-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.1);
  transition: transform .5s ease, filter .5s ease;
}
.president-banner:hover .president-banner-img img { transform: scale(1.04); }
.president-banner-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,.15) 0%, transparent 40%, rgba(17,17,17,.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.president-banner-text {
  padding: 50px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.president-banner-text::before {
  content: '';
  position: absolute; top: 50px; left: 0;
  width: 40px; height: 3px; background: var(--yellow);
}
.president-banner-label {
  font-size: 12px; letter-spacing: .3em;
  color: var(--yellow); font-weight: 700;
  margin-left: 56px; margin-bottom: 18px;
}
.president-banner-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; line-height: 1.25;
  margin-bottom: 14px;
}
.president-banner-sub {
  font-size: 15px; color: #bbb; line-height: 1.8;
  margin-bottom: 28px;
}
.president-banner-arrow {
  display: inline-flex; align-items: center;
  font-size: 13px; letter-spacing: .1em; font-weight: 700;
  color: var(--yellow);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--yellow);
  align-self: flex-start;
  transition: gap .3s ease, padding-right .3s ease;
}
.president-banner:hover .president-banner-arrow { padding-right: 8px; }

@media (max-width: 768px) {
  .president-banner { grid-template-columns: 1fr; }
  .president-banner-img { aspect-ratio: 16 / 10; }
  .president-banner-text { padding: 36px 28px; }
  .president-banner-text::before { top: 36px; }
  .president-banner-label { margin-left: 56px; }
}

/* --- ニュース --- */
.news-wrap { position: relative; margin-top: 30px; }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.news-card { display: block; }
.news-card-img-wrap { overflow: hidden; }
.news-card img {
  width: 100%; aspect-ratio: 1.3 / 1; object-fit: cover;
  filter: grayscale(100%); opacity: .75;
  transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}
.news-card:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.03); }
.news-card-title {
  margin-top: 14px; font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700; line-height: 1.5; color: #444;
}
.news-date {
  margin-top: 8px; font-size: 15px; color: #999;
  text-decoration: underline; text-underline-offset: 3px;
}
.more-btn {
  margin-top: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 16px;
  background: var(--yellow); color: #222;
  font-weight: 700; font-size: 13px; border-radius: var(--radius);
  transition: opacity var(--trans);
}
.more-btn:hover { opacity: .8; }

/* =============================================
   ダウンロードモーダル
   ============================================= */
.dl-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 2000;
  align-items: center; justify-content: center;
}
.dl-modal-overlay.open { display: flex; }
.dl-modal {
  background: var(--white); width: min(520px, calc(100% - 32px));
  max-height: 90vh; overflow-y: auto;
  padding: 40px 36px; position: relative;
}
.dl-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: #999;
}
.dl-modal h2 {
  font-size: 20px; font-weight: 900; margin: 0 0 8px;
}
.dl-modal .dl-modal-sub {
  font-size: 13px; color: #888; margin: 0 0 24px;
}
.dl-modal .form-group {
  margin-bottom: 16px;
}
.dl-modal label {
  display: block; font-size: 13px; font-weight: 700;
  margin-bottom: 6px; color: #444;
}
.dl-modal label .req {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: #e53935; color: #fff; padding: 1px 6px;
  border-radius: 2px; margin-left: 6px; vertical-align: middle;
}
.dl-modal input[type="text"],
.dl-modal input[type="email"],
.dl-modal input[type="tel"] {
  width: 100%; border: 1px solid #d9d9d9; border-radius: 3px;
  padding: 11px 14px; font-size: 15px; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.dl-modal input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(241,190,36,.18);
}
.dl-modal .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dl-modal .dl-submit-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; margin-top: 24px;
  background: var(--black); color: var(--white);
  font-size: 16px; font-weight: 700; font-family: inherit;
  border: none; cursor: pointer; transition: background .2s;
}
.dl-modal .dl-submit-btn:hover { background: #333; }
@media (max-width: 640px) {
  .dl-modal { padding: 28px 20px; }
  .dl-modal .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  margin-top: 86px;
  background: linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
  color: var(--footer-txt);
  position: relative; overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute; right: -40px; bottom: -20px;
  width: 340px; height: 160px;
  background: linear-gradient(135deg,
    transparent 0 25%, rgba(255,255,255,.04) 25% 40%,
    transparent 40% 55%, rgba(255,255,255,.04) 55% 70%, transparent 70%);
  transform: rotate(-8deg); pointer-events: none;
}
.footer-inner {
  padding: 72px 0 44px;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; position: relative; z-index: 1;
}
.footer-logo img { width: 160px; height: auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px 60px;
}
.footer-col h4 {
  font-size: 13px; letter-spacing: .1em; color: #686868;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-links a, .footer-services a {
  display: block; color: var(--footer-txt);
  font-size: 15px; margin-bottom: 12px;
  transition: color var(--trans);
}
.footer-links a:hover, .footer-services a:hover { color: var(--white); }

.footer-contact-item {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 12px; margin-bottom: 18px; align-items: start;
}
.footer-contact-icon {
  width: 24px; height: 24px;
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; transform: translateY(2px);
}
.footer-contact-main {
  font-size: 16px; font-weight: 700; color: #d9d9d9; line-height: 1.35;
}
.footer-contact-sub { margin-top: 4px; font-size: 13px; color: #888; }

.copyright {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px; color: #888;
}

/* =============================================
   アニメーション
   ============================================= */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.show { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  :root { --header-h: 66px; }
  .topbar, .menubar { display: none; }
  .mobile-tools { display: flex; }
  .mobile-tools .logo img { width: 112px; }
  .hero { height: min(72vh, 520px); }
  .hero-intro { top: 72px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-arrow, .news-arrow { display: inline-flex; }
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .container { width: calc(100% - 16px); }
  .hero { height: 480px; }
  .hero-intro { top: 82px; }
  .hero-copy { justify-content: flex-start; padding-top: 160px; }
  .hero-intro-title { font-size: 22px; }
  .hero-intro-sub { font-size: 12px; line-height: 1.6; }
  .hero-kicker { font-size: 20px; }
  .hero-sub { font-size: 12px; margin-bottom: 12px; }
  .hero-btn { min-height: 36px; padding: 0 12px; font-size: 12px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 32px; }
  .hero-arrow.prev { left: 6px; }
  .hero-arrow.next { right: 6px; }
  .intro-band { padding: 20px 8px 4px; }
  .section { padding-top: 40px; }
  .heading-ja { font-size: 20px; }
  .heading-en { font-size: 14px; }
  .service-grid { display: block; }
  .service-grid-3 { grid-template-columns: 1fr; }
  .service-card:not(.active-mobile) { display: none; }
  .service-arrow, .news-arrow { width: 34px; height: 34px; font-size: 22px; }
  .service-arrow.prev, .news-arrow.prev { left: 0; }
  .service-arrow.next, .news-arrow.next { right: 0; }
  .site-footer { margin-top: 60px; }
  .footer-inner { padding: 50px 0 28px; gap: 28px; }
  .footer-logo img { width: 110px; }
}

/* ===================================================
   固定フローティングCTAボタン
   =================================================== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}
.float-cta svg {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    font-size: 13px;
    padding: 13px 20px;
  }
}

/* ===================================================
   サービスページ CTAセクション
   =================================================== */
.service-cta-section {
  background: #111;
  padding: 64px 0;
  text-align: center;
  margin-top: 80px;
}
.service-cta-section .cta-label {
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-cta-section .cta-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.service-cta-section .cta-sub {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 36px;
  line-height: 1.7;
}
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 18px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 16px rgba(241,190,36,.35);
}
.service-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(241,190,36,.45);
}
@media (max-width: 640px) {
  .service-cta-section { padding: 48px 20px; margin-top: 60px; }
  .service-cta-btn { width: 100%; justify-content: center; }
}
