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

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 72px; /* ヘッダーの高さ分 */
}
/* ヘッダー全体 */
.header {
  background: #fff;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

/* 横並び */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo a {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.header-icon {
  margin-left: 6px;
  font-size: 18px;
}

/* ナビ */
.header-nav {
  margin-left: auto;
  margin-right: 40px;
}
.header-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #365184;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-nav a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}
/* お問い合わせボタン */
.contact-btn {
  background: #ECE895;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: #d9d564;          /* 少し濃く */
  transform: translateY(-2px);  /* ふわっと浮く */
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
/* ロゴ全体 */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #000;
}
/* 車アイコン画像 */
.logo-icon {
  width: 70px;    /* 20〜30pxで調整 */
  height: auto;
  display: block;
  transform: rotate(-30.96deg) translateX(-12px);
  transform-origin: center;
  
}
/* ロゴ文字 */
.logo-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #365184;
}
/* ファーストビュー全体 */
.first-view {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

/* 中央寄せ */
.first-view-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 画像ラッパー */
.fv-image-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;   /* ← ここでサイズ調整（800〜1000px） */
  margin: 0 auto;     /* ← 中央寄せ */
  overflow: hidden;
  aspect-ratio: 16 / 9; 
}

/* 画像 */
.fv-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 日本語キャッチ */
.fv-copy {
   position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  display: flex;
  align-items: center;
  gap: 12px;
}

.fv-copy-main {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.fv-copy-sub {
  background: #ECE895; 
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 6px 12px;
}

/* 英字コピー */
.fv-english {
  text-align: right;
  margin-top: 20px;
  font-size: 40px;
  font-family: 'Dancing Script', cursive;
  color: #ECE895;
  transform: rotate(-9.48deg); /* ← 反時計回り */
  transform-origin: right center; /* 回転の基準点（おすすめ） */
  position: relative;        /* ← 念のため */
  top: -190px; 
  z-index: 2;  
}
/* ファーストビュー画像に白の透かし */
.fv-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35); /* ← 白35% */
  z-index: 1;
  pointer-events: none; /* クリック影響なし */
}
/* ===== ファーストビュー スライド ===== */
.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fv-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-slide.is-active {
  opacity: 1;
}

/* ラッパーは高さ保持のため relative のまま */
.fv-image-wrap {
  position: relative;
}
@media screen and (max-width: 768px) {

  .first-view {
    padding: 40px 0 80px;
  }

  .first-view-inner {
    padding: 0 24px;
  }

  .fv-image-wrap {
    width: 85%;
    aspect-ratio: 3 / 5; /* 縦長 */
    max-width: 350px;
    margin: 0 auto;
  }

  .fv-slide img,
  .fv-slide picture {
    width: 100%;
    height: 100%;
  }

  .fv-slide img {
    object-fit: cover;
  }

  /* キャッチコピー */
  .fv-copy {
    flex-direction: column;
    align-items: center;

    top: 52%;
    left: 50%;

    gap: 8px;
    z-index: 3;
    width: 90%;
  }

  .fv-copy-main {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
  }

  .fv-copy-sub {
    font-size: 2.2rem;
    padding: 4px 12px;
    text-align: center;
  }

  /* 英字 */
  .fv-english {
    font-size: 3rem;

    text-align: center;

    top: -60px;
    right: auto;

    margin: 0;

    transform: rotate(-8deg);
  }

}
.concept {
  position: relative;
  overflow: hidden;
  padding: 140px 5% 180px;
  background: #eef9ff;
  margin-top: -120px;
}

/* 青の斜め背景 */
.concept::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -180px;
  width: 100%;
  height: 420px;
  background: #365184;
  transform: skewY(8deg);
  z-index: 0;
}

/* =========================
   コンテンツ
========================= */
.concept-content {
  position: relative;
  z-index: 3;
  max-width: 550px;
  margin-left: auto;
}

.concept-sub {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #071b63;
  margin-bottom: 25px;
}

.concept-title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 800;
  color: #071b63;
  margin-bottom: 60px;
}

.concept-title span {
  color: #ECE895;
}

.concept-text {
  font-size: 17px;
  line-height: 2;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
}

.concept-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 50px;
  background: #ECE895;
  color: #071b63;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: .3s;
  margin-top: 20px;    /* 下へ */
  margin-left: 60px; 
}

.concept-btn:hover {
  transform: translateY(-3px);
}

.concept-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #071b63;
  color: #fff;
  font-size: 12px;
}

/* =========================
   チェキ風
========================= */
.polaroid {
  position: absolute;
  z-index: 2;
  width: 180px;
  
  box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
}

.polaroid img:first-child {
  width: 100%;
  display: block;
}

.polaroid .pin {
  position: absolute;
  width: 120px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

/* 配置 */
.polaroid01 {
  top: 300px;
  left: 6%;
  transform: rotate(-10deg);
}

.polaroid02 {
  top: 150px;
  left: 25%;
  transform: rotate(4deg);
}

.polaroid03 {
  bottom: 180px;
  left: 24%;
  transform: rotate(14deg);
}

/* =========================
   ボルト
========================= */
.bolt {
  position: absolute;
  left: 4%;
  bottom: 170px;
  width: 140px;
  z-index: 2;
}

/* =========================
   キャラクター
========================= */
.character {
  position: absolute;
  right: 15%;
  bottom: 90px;
  width: 120px;
  z-index: 3;
  transform-origin: bottom center;
  animation: sway 3.5s ease-in-out infinite;
}
@keyframes sway {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(1.5deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-1.5deg); }
  100% { transform: rotate(0deg); }
}
/* 白カードだけ揺らす */
.polaroid-inner {
  background: #fff;
  padding: 20px 10px 58px;
  transform-origin: top center;
}


/* conceptを基準にする */
.concept {
  position: relative;
  overflow: hidden;
}

/* 横スクロール全体 */
.es-marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  pointer-events: none; /* クリック邪魔しない */
  z-index: 1;
}

/* 動く中身 */
.es-marquee-track {
  display: flex;
  width: fit-content;
  animation: es-marquee 22s linear infinite;
}

/* 文字デザイン */
.es-marquee-track span {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  margin-right: 60px;

  color: rgba(255, 255, 255, 0.35); /* 白35% */
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
}

/* アニメーション */
@keyframes es-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
   CONCEPT：レスポンシブ
========================= */
@media screen and (max-width: 768px) {
  .concept {
    padding: 80px 20px 410px; /* 下側の青背景部分を広めに確保 */
    margin-top: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }

  /* 青の斜め背景：スマホ向けに角度と高さを調整 */
  .concept::after {
    height: 65%; /* スマホでは背景の面積を増やす */
    bottom: -100px;
    transform: skewY(12deg); /* 角度を少し急にする */
  }

  /* コンテンツ：中央寄せ */
  .concept-content {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    z-index: 5;
  }

  .concept-sub {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .concept-title {
    font-size: 38px; /* スマホで入り切るサイズ */
    margin-bottom: 30px;
  }

  .concept-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: center; /* 本文は左寄せの方が見やすい */
    margin-bottom: 100px;
  }

  /* ボタン：中央に配置 */
  .concept-btn {
    margin-left: 0;
    padding: 15px 25px;
    font-size: 15px;
    margin-top: 50px;
    transform: translateY(250px);
  }

  /* =========================
     チェキ風：スマホ用の配置
  ========================= */
  .polaroid {
    width: 130px; /* スマホ用にサイズダウン */
    position: absolute;
  }

  .polaroid-inner {
    padding: 12px 8px 35px; /* 下の余白も少し詰める */
  }

  .polaroid .pin {
    width: 80px; /* ピンも小さく */
    top: -30px;
  }

  /* 画像のように三角形っぽく散らす */
  .polaroid01 {
    top: auto;
    bottom: 270px;
    left: 10%;
    transform: rotate(-12deg);
  }

  .polaroid02 {
    top: auto;
    bottom: 430px;
    left: 38%;
    transform: rotate(6deg);
  }

  .polaroid03 {
    top: auto;
    bottom: 255px;
    left: 55%;
    transform: rotate(10deg);
  }

  /* ボルト：左下に小さく */
  .bolt {
    width: 100px;
    left: 10%;
    bottom: 80px;
  }

  /* キャラクター：ボタンの横あたりに配置 */
  .character {
    width: 100px;
    right: 10%;
    bottom: 110px;
    z-index: 10;
  }

  /* 流れる文字：スマホでは少し小さく */
  .es-marquee-track span {
    font-size: 32px;
  }
}
/* =========================
   全体
========================= */
.service {
  position: relative;
  overflow: hidden;
  background: #081d6b;
  padding-bottom: 200px;
}

/* =========================
   下の電球画像（パララックス）
========================= */
.service-parallax {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  z-index: 0;
  background-image: url("image/naga-para.png"); /* 画像パス */
  background-attachment: fixed;  /* これでスクロールしても画像が固定されます */
  background-size: cover;        /* 領域いっぱいに表示 */
  background-position: center;   /* 中央合わせ */
  background-repeat: no-repeat;
}



/* =========================
   青背景部分
========================= */
.service-inner {
  position: relative;
  z-index: 2;
  background: #365184;
  padding: 120px 5% 260px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

/* =========================
   中身
========================= */
.service-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}

.service-map {
  position: relative;
  width: 50%;
  z-index: 2;
}

.service-map > img:first-child {
  width: 100%;
}

/* ピン */
.service-map .pin {
  position: absolute;
  width: 70px;
  left: 15%;
  bottom: 20%;
  animation: pinBounce 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes pinBounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-12px); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
/* =========================
   テキスト
========================= */
.service-content {
  width: 45%;
  color: #fff;
  z-index: 2;
}

.service-sub {
  font-size: 20px;
  color: #D4CB10;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 30px;
}

.service-title span {
  color: #D4CB10;
}

.service-text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: 600;
}

/* ボタン */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 50px;
  background: #ECE895;
  color: #081d6b;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: .3s;
  margin-top: 40px;
}

.service-btn:hover {
  transform: translateY(-3px);
}

.service-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #081d6b;
  color: #fff;
  font-size: 12px;
}

/* =========================
   装飾
========================= */



.bolt02 {
  bottom: 200px;
  left: 4%;
  width: 130px;
}

.lightning {
  position: absolute;
  top: 90px;
  left: 8%;
  width: 80px;
  z-index: 3;
}
@media screen and (max-width: 768px){

  .service{
    padding-bottom: 120px;
  }

  /* 青背景 */
  .service-inner{
    display: block;
    padding: 60px 25px 140px;
    clip-path: polygon(0 0,100% 0,100% 92%,0 100%);
  }

  /* 地図 */
  .service-map{
    width: 100%;
    margin-bottom: 40px;
  }

  .service-map > img:first-child{
    width: 115%;
    display: block;
    margin: 0 auto;
    max-width: none;
    margin-left: -10%;
  }

  .service-map .pin{
    width: 50px;
    left: 10%;
    bottom: 18%;
  }

  /* 英語 */
  .service-sub{
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    transform: translate(10px, -30px);
  }

  /* タイトル */
  .service-title{
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
    transform: translate(15px,-30px);
  }

  /* 本文 */
  .service-text{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    transform: translateX(10px);
  }
  /* ボタン */
  .service-btn{
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 40px auto 0;
    padding: 16px 30px;
    font-size: 15px;
    
  }

  /* 雷 */
  .lightning{
    width: 60px;
    top: 40px;
    left: 50px;
  }

  /* ネジ */
  .bolt02{
    width: 70px;
    bottom: 140px;
    right: 20px;
    left: auto;
  }

  /* パララックス無効 */
  .service-parallax{
    background-attachment: scroll;
  }
  .service-content{
    width: 100%;
    text-align: center; /* デザイン的に合わせるなら */
  }

}
/* フッター全体 */
.site-footer {
  background: #365184;
  color: #fff;
  padding: 80px 0 60px;
}

/* 中央寄せ */
.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 上段 */
.footer-top {
  margin-bottom: 40px;
}

/* 会社情報 */
.footer-info {
  margin-bottom: 20px;
}

.footer-company {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
}

/* 横ライン＋車 */
.footer-line {
  position: relative;
  margin-top: 24px;
}

.footer-line span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.6);
  width: 100%;
}

.footer-car {
  position: absolute;
  right: 0;
  top: -70px;
  width: 120px; /* 車のサイズ調整 */
  transform: rotate(-29.6deg);
}

/* ナビ */
.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-nav a:hover {
  opacity: 0.7;
}
/* =========================
   フッター：スマホ非表示
========================= */
@media screen and (max-width: 768px) {
  .site-footer {
    display: none;
  }
}
/* =========================
   中ページ ファーストビュー
========================= */
.page-hero {
  background: #fff;
  padding: 60px 0;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 中ページ用 画像ラッパー（FVと同サイズ） */
.page-hero-image {
  position: relative;
  width: 100%;
  max-width: 1000px;   /* ← fv-image-wrap と同じ */
  margin: 0 auto;      /* ← 中央寄せ */
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* 画像 */
.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 白の透かし（35%） */
.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

/* タイトル文字 */
.page-hero-title {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.1em;
}
/* =========================
   中ページ 導入ブロック
========================= */
.intro-diagonal {
  position: relative;
  background: #365184;
  padding: 120px 0 140px;
  overflow: hidden;
  margin-top: -60px; 
}

/* 上の斜めカット */
.intro-diagonal::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 340px;
  background: #EDF3FF;
  transform: skewY(-10deg);
  z-index: 1;
}

/* 中身 */
.intro-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* テキスト */
.intro-text {
  max-width: 600px;
  color: #fff;
}

.intro-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  position: relative;
  transform: translate(30px, -20px);
  background-color: #365184;
}

.intro-sub {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
  transform: translateX(120px);
}

.intro-sub span {
  color: #D4CB10;
}

.intro-description {
  font-size: 16px;
  line-height: 2;
  color: #eaeaea;
  position: relative;
  transform: translateX(120px);
  font-weight: 600;
}

/* 電球 */
.intro-light {
  position: absolute;
  right: 0;
  top: -90px;
  width: 280px;
}
@media screen and (max-width: 768px){

  .intro-diagonal{
    padding: 180px 0 80px;
    margin-top: 0;
  }
  .company-page .intro-diagonal{
    top: -90px;
  }
  /* 上の白い斜め部分 */
  .intro-diagonal::before{
    top: -90px;
    height: 400px;
    transform: skewY(-22deg);
  }
  
  .intro-inner{
    padding: 0 25px;
  }

  /* 電球 */
  .intro-light{
    width: 190px;
    top: -170px;
    right: 10px;
    z-index: 5;
  }

  /* タイトル */
  .intro-title{
    display: inline-block;
    font-size: 3rem;
    line-height: 1.05;
    padding: 12px 18px;
    margin-bottom: 40px;
    margin-top: -20px;
    transform: none;
    background: #365184;
    color: #fff;
  }

  /* サブタイトル */
  .intro-sub{
    transform: none;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #fff;
    margin-left: 25px;
  }

  .intro-sub span{
    color: #D4CB10;
  }

  /* 本文 */
  .intro-description{
    transform: none;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #fff;
    font-weight: 700;
    margin-left: 20px;
  }
  .intro-sub{
    margin-top: 43px;
  }
  

}
/* companyページだけ電球を消す */
.company-page .intro-light {
  display: none;
}
/* =========================
   業務内容
========================= */
.business {
  padding: 120px 0;
  background: #fff;
}

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

/* 各ブロック */
.business-item {
  margin-bottom: 140px;
  text-align: center;
}

/* 黄色ラベル */
.business-label {
  display: inline-block;
  background: #ECE895;
  color: #071b63;
  font-weight: 800;
  font-size: 22px;
  padding: 10px 60px;
  margin: 0 auto 70px; /* ← ここ */
}

/* 横並び */
.business-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 画像 */
.business-image {
  position: relative;
  flex: 0 0 40%;
  overflow: hidden;
}
.business-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* ← 黒20% */
  pointer-events: none;          /* クリック影響なし */
}
.business-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.business-text {
  flex: 1;
  font-size: 15px;
  line-height: 2;
  color: #333;
}

/* 交互レイアウト */
.business-item.reverse .business-content {
  flex-direction: row-reverse;
}
.business-item:nth-child(even) .business-content {
  flex-direction: row-reverse;
}
/* =========================
   業務内容｜スマホ対応
========================= */
@media screen and (max-width: 768px) {

  /* 全体の上下余白を少し詰める */
  .business {
    padding: 80px 0;
  }

  /* 各ブロック間 */
  .business-item {
    margin-bottom: 90px;
  }

  /* 黄色ラベル */
  .business-label {
    font-size: 18px;
    padding: 8px 30px;
    margin-bottom: 40px;
  }

  /* 横並び → 縦並び */
  .business-content {
    flex-direction: column;
    gap: 30px;
  }

  /* ★ 交互レイアウトを完全に解除 */
  .business-item.reverse .business-content,
  .business-item:nth-child(even) .business-content {
    flex-direction: column;
  }

  /* 画像 */
  .business-image {
    flex: none;
    width: 85%;
    margin: 0 auto;
  }

  /* テキスト */
  .business-text {
    font-size: 14px;
    line-height: 1.9;
    text-align: center; /* ← スマホは左揃えが読みやすい */
    font-weight: 600;
  }

  
}
/* =========================
   全体
========================= */
.area {
  padding: 120px 5%;
  background: #fff;
}

/* =========================
   タイトル帯
========================= */
.area-head {
  position: relative;
  width: fit-content;
  margin: 0 auto -80px;
  padding: 10px 140px;
  background: #ECE895;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.area-head h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: #071b63;
  letter-spacing: 0.08em;
}

/* ネジ */
.screw {
  position: absolute;
  top: 50%;
  width: 34px;
  transform: translateY(-50%);
}

.screw-left {
  left: 28px;
}

.screw-right {
  right: 28px;
}

/* =========================
   中身
========================= */
.area-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
}

/* =========================
   地図
========================= */
.area-map {
  position: relative;
  width: 50%;
}

.area-map .map {
  width: 100%;
  display: block;
}

/* 赤ピン */
.area-map .pin {
  position: absolute;
  width: 90px;
  left: 12%;
  bottom: 35%;
}

/* =========================
   テキスト
========================= */
.area-content {
  width: 38%;
}

.area-content h3 {
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.3;
  font-weight: 800;
  color: #000;
  margin-bottom: 50px;
}

.area-content p {
  font-size: 22px;
  line-height: 2;
  font-weight: 700;
  color: #000;
}
.area-content .area-highlight {
  color: #365184;   /* 好きな色に変更OK */
}
.sp-only {
  display: none;
}
/* =========================
   対応エリア：レスポンシブ
========================= */
@media screen and (max-width: 768px) {

  /* 中身：縦並び */
  .area-inner {
    flex-direction: column;
    gap: 30px;
  }

  /* 地図 */
  .area-map {
    width: 100%;
    max-width: 360px;
    margin: -140px auto 0;
  }

  .area-map .pin {
    width: 48px;        /* ← ピン小さく */
    left: 18%;
    bottom: 35%;
  }

  /* テキスト */
  .area-content {
    width: 100%;
    text-align: center;
    margin-top: -130px; 
  }

  .area-content h3 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .area-content p {
    font-size: 15px;
    line-height: 1.8;
  }
  .area-head {
  position: relative;
  width: fit-content;
  margin: 0 auto 60px;
  padding: 13px 80px;

  background: #ECE895;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);

  display: flex;
  align-items: center;
  justify-content: center;
}

.area-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #071b63;
  letter-spacing: 0.08em;
}

/* ネジ（共通） */
.area-head .screw {
  position: absolute;
  top: 50%;
  width: 34px;
  transform: translateY(-50%);
}

.area-head .screw-left {
  left: 28px;
}

.area-head .screw-right {
  right: 28px;
}
/* PCのみの改行を無効にする */
  .pc-only {
    display: none;
  }

  /* スマホのみの改行を有効にする */
  .sp-only {
    display: block;
  }
}

/* =========================
   全体
========================= */
.works {
  padding: 120px 5%;
  background: #fff;
}

/* =========================
   タイトル帯
========================= */
.works-head {
  position: relative;
  width: fit-content;
  margin: -270px auto 90px;
  padding: 10px 140px;
  background: #ECE895;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.works-head h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: #071b63;
  letter-spacing: 0.08em;
}
/* ネジ（共通） */
.area-head .screw {
  position: absolute;
  top: 50%;
  width: 34px;
  transform: translateY(-50%);
}

.area-head .screw-left {
  left: 18px;   /* ← 28px → 40px など */
}

.area-head .screw-right {
  right: 18px;  /* ← 同じ数値にする */
}

/* =========================
   グリッド
========================= */
.works-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* =========================
   画像
========================= */
.works-item {
  display: flex;              /* 追加 */
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  transition: .4s;
}

.works-item img {
  width: 80%;     /* ← ここでサイズ調整（70〜90%） */
  height: auto;
  object-fit: contain; /* cover → contain */
  display: block;
  transition: .5s;
}
/* =========================
   施工実績：レスポンシブ
========================= */
@media screen and (max-width: 768px) {

  /* 全体余白 */
  .works {
    padding: 80px 5% 60px;
  }

  /* タイトル帯 */
  .works-head {
    margin: -160px auto 50px;   /* ← 上に被せすぎ防止 */
    padding: 8px 90px;
  }

  .works-head h2 {
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  /* ネジ */
  .screw {
    width: 22px;
  }

  .screw-left {
    left: 18px;
  }

  .screw-right {
    right: 18px;
  }

  /* グリッド：2列 */
  .works-grid {
    grid-template-columns: repeat(2, 1fr); /* ← ここ重要 */
    gap: 20px;
  }

  /* 画像サイズ */
  .works-item img {
    width: 85%;
  }
  .works-item:nth-child(9) {
    display: none;
  }
}
.company-page .intro-title {
  margin-top: 40px; /* 好きな量に調整 */
  margin-left: 40px;
}
.company-page .intro-sub {
  margin-top: 60px; /* ← 下に移動（好きな量に調整） */
}
/* 社長写真（companyページ専用） */
.company-page .intro-ceo {
  position: absolute;
  right: 0;
  top: 30px;
  width: 290px;
  z-index: 2;
  right: 40px;
}
@media screen and (max-width: 768px) {

  /* 会社概要ページの代表写真の調整 */
  .company-page .intro-ceo {
    /* 現在の 30px から数値を大きくして下に下げる */
    top: 100px; 
    
    /* 右端からの距離（2回書いてあったので1つにまとめました） */
    right: 20px; 
    
    /* もしこれでも動かない場合は !important をつけてみてください */
    /* top: 80px !important; */
  }

}
.company {
  padding: 120px 5% 30px;
  background: #fff;
}

/* =========================
   タイトル帯
========================= */
.company-head {
  position: relative;
  width: fit-content;
  margin: 0 auto 90px;
  padding: 10px 150px;
  background: #ECE895;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.company-head h2 {
  font-size: clamp(28px, 3vw, 30px);
  font-weight: 800;
  color: #071b63;
  letter-spacing: 0.08em;
}

/* ネジ */
.screw {
  position: absolute;
  top: 50%;
  width: 34px;
  transform: translateY(-50%);
}

.screw-left {
  left: 28px;
}

.screw-right {
  right: 28px;
}

/* =========================
   テーブル
========================= */
.company-table {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cfcfcf;
}

/* 行 */
.company-row {
  display: flex;
  border-bottom: 1px solid #cfcfcf;
}

/* 左 */
.company-label {
  width: 32%;
  padding: 38px 40px;
  font-size: 23px;
  font-weight: 700;
  color: #222;
}

/* 右 */
.company-data {
  width: 68%;
  padding: 38px 40px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  font-weight: 500;
}

/* 事業内容だけ上揃え */
.company-row-top {
  align-items: flex-start;
}

/* 注意文 */
.company-note {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #d92b2b;
  font-weight: 700;
}
/* =========================
   レスポンシブ（スマホ）
========================= */
@media screen and (max-width: 768px) {

  .company-table {
    max-width: 100%;
    border-top: 1px solid #cfcfcf;
  }
  .company{
    padding-top: 70px;
  }
  /* 行を縦並びに */
  .company-row {
    flex-direction: column;
  }

  /* ラベル */
  .company-label {
    width: 100%;
    padding: 18px 16px 8px;
    font-size: 16px;
    font-weight: 700;
    background: #f5f5f5; /* ← 紙っぽさ */
    border-bottom: 1px solid #cfcfcf;
  }

  /* データ */
  .company-data {
    width: 100%;
    padding: 14px 16px 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  /* 事業内容の点線風 */
  .company-row-top .company-data {
    padding-top: 16px;
  }

  /* 注意文 */
  .company-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }
  .company-head {
    gap: 10px;
    padding: 13px 90px;   /* ← 帯を細く */
    margin-bottom: 40px;
    position: relative; 
  }

  .company-head h2 {
    font-size: 18px;
    line-height: 1;
  }
  .screw {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
}

/* 左ネジ */
.screw-left {
  left: 10px;
}

/* 右ネジ */
.screw-right {
  right: 10px;
}
}
/* =========================
   全体
========================= */
.philosophy {
  padding: 120px 5% 30px;
  background: #fff;
}

/* =========================
   タイトル帯
========================= */
.philosophy-head {
  max-width: 500px;
  margin: 0 auto 80px;
  padding: 10px 10px;
  background: #ECE895;
  text-align: center;
  position: relative; /* ネジを配置する基準点 */
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
}

.philosophy-head h2 {
  font-size: clamp(32px, 4vw, 30px);
  font-weight: 800;
  color: #071b63;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ネジの共通設定 */
.philosophy-head::before,
.philosophy-head::after {
  content: "";
  position: absolute;
  top: 50%;           /* 上下中央に配置 */
  transform: translateY(-50%); 
  width: 48px;        /* ネジのサイズ */
  height: 48px;
  background-image: url('image/naji-hed.png'); /* ネジの画像パス */
  background-size: contain;
  background-repeat: no-repeat;
}

/* 左のネジ */
.philosophy-head::before {
  left: 20px;         /* 左端からの距離 */
}

/* 右のネジ */
.philosophy-head::after {
  right: 20px;        /* 右端からの距離 */
}

/* =========================
   テキスト
========================= */
.philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-content p {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 2;
  font-weight: 700;
  color: #111;
  text-align: center; 
}
/* =========================
   理念：スマホ対応
========================= */
@media screen and (max-width: 768px) {

  /* 全体余白 */
  .philosophy {
    padding: 0 6% 5px;
  }

  /* タイトル帯 */
  .philosophy-head {
    max-width: 70%;
    margin: 0 auto 70px;
    padding: 8px 0;
  }

  .philosophy-head h2 {
    font-size: 20px;   /* ← スマホ用に小さく */
    letter-spacing: 0.12em;
  }

  /* ネジを小さく＆内側に */
  .philosophy-head::before,
  .philosophy-head::after {
    width: 35px;
    height: 35px;
  }

  .philosophy-head::before {
    left: 12px;
  }

  .philosophy-head::after {
    right: 12px;
  }

  /* テキスト */
  .philosophy-content {
    padding: 0 5%;
  }

  .philosophy-content p {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 600;
    text-align: center;   /* ← スマホは左揃えが読みやすい */
    margin-bottom: -20px; 
  }
}
.map-section {
  padding: 100px 0;
  background: #fff;
}

.map-container {
  width: 80%;
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: none; 
}
.inquiry-section {
  padding: 20px 0 120px;
  background: #fff;
}
.contact-page .inquiry-section {
  padding-top: 20px;
  margin-top: -80px;
}
.inquiry-inner {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトル */
.inquiry-title-wrap {
  width: fit-content;
  margin: 0 auto 40px;
  padding: 3px 40px;
  background: #ECE895;

  display: flex;
  align-items: center;
  gap: 30px;
}

.inquiry-title {
  font-size: 30px;
  font-weight: 800;
  color: #365184;
  line-height: 1;
}

.inquiry-bolt {
  width: 38px;
  height: auto;
  display: block;
}

/* 説明文 */
.inquiry-text {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 80px;
  color: #222;
}

/* フォーム */
.inquiry-form {
  background: #f7f9fc;
  padding: 50px;
}

/* 各項目 */
.inquiry-group {
  margin-bottom: 40px;
}

.inquiry-group label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  margin-left: 90px;
}

/* input */
.inquiry-group input,
.inquiry-group textarea {
  width: 100%;
  border: 2px solid #bdbdbd;
  background: #fff;
  font-size: 18px;
  padding: 15px;
  box-sizing: border-box;
  outline: none;
}

.inquiry-group input {
  height: 65px;
}

.inquiry-group textarea {
  height: 250px;
  resize: vertical;
}

/* ボタン */
.inquiry-btn {
  display: block;
  margin: 60px auto 0;
  width: 180px;
  height: 70px;

  border: none;
  border-radius: 50px;

  background: linear-gradient(to bottom, #0b1f63, #081746);

  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);

  transition: 0.3s;
}

.inquiry-btn:hover {
  opacity: 0.85;
}
.inquiry-group input,
.inquiry-group textarea {
  width: 80%;           /* ← 横幅を縮める */
  max-width: 700px;     /* ← 広がりすぎ防止 */
  margin: 0 auto;       /* ← 中央寄せ */
  display: block;
}
/* contactページだけ導入ブロックを非表示 */
.contact-page .intro-diagonal {
  display: none;
}
/* =========================
   お問い合わせフォーム：レスポンシブ
========================= */
@media screen and (max-width: 768px) {

  /* フォーム全体 */
  .inquiry-form {
    padding: 20px 16px;
  }

  /* 各項目 */
  .inquiry-group {
    margin-bottom: 24px;
  }

  /* ラベル */
  .inquiry-group label {
    font-size: 15px;
    margin-bottom: 8px;
    margin-left: 0;   /* ← PC用90pxを解除 */
  }

  /* input / textarea */
  .inquiry-group input,
  .inquiry-group textarea {
    width: 100%;      /* ← フル幅 */
    max-width: none;
    font-size: 15px;
    padding: 12px;
  }

  .inquiry-group input {
    height: 48px;
  }

  .inquiry-group textarea {
    height: 180px;
  }

  /* 送信ボタン */
  .inquiry-btn {
    width: 100%;
    max-width: 280px;
    height: 54px;
    font-size: 18px;
    margin: 40px auto 0;
  }
}
.fixed-visual {
  width: 100%;
  padding: 0;
  background: #fff;
}

/* パララックス部分 */
.fixed-visual-image {
  width: 100%;
  height: 300px;
  margin: 0 ;

  background-image: url("image/naga-para02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* パララックス */
  background-attachment: fixed;

  position: relative;
  overflow: hidden;
}

/* 少し暗くして画像みたいな雰囲気 */
.fixed-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px) {
  .fixed-visual {
    display: none;
  }
}
/* セクション全体の背景設定 */
.performance-section {
  width: 100%;
  min-height: 500px;
  padding: 60px 0;
  position: relative; /* 擬似要素の基準にする */
  background-color: #EDF3FF; /* 全体の背景色（薄い水色） */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 右上の紺色三角形 */
.performance-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;   /* 三角形の横幅（お好みで調整） */
  height: 100%;  /* 三角形の縦幅 */
  background-color: #365184; /* 紺色 */
  /* 三角形に切り抜く（右上→右下→左上の順で結ぶ） */
 clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 0;
}

.performance-container {
  position: relative;
  z-index: 1; /* 背景より上にコンテンツを出す */
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
}

/* タイトル部分 */
.performance-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px;
  display: block;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 25px;
  margin-top: 40px;
}

.highlight {
  background-color: #365184;
  color: #ECE895; /* 電気らしい黄色 */
  padding: 0 10px;
  margin-right: 5px;
}

/* テキスト部分 */
.performance-text p {
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000;
  padding-left: 28px;
  font-size: 20px;
}

/* ボタンとキャラクター */
.performance-action {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 0px;
  padding-left: 350px;
}

.btn-performance {
  display: inline-flex;
  align-items: center;
  background-color: #ECE895; /* 黄緑系の色 */
  padding: 15px 45px;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.68);
  font-size: 1.2rem;
  transform: translateY(-38px);
}
.btn-performance:hover {
  transform: translateY(-42px);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
}
.btn-icon {
  background: #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.char-img {
  height: 160px; /* サイズは調整してください */
  width: auto;
  transform-origin: bottom center;
  animation: sway 3.5s ease-in-out infinite;
}
@keyframes sway {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(1.5deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-1.5deg); }
  100% { transform: rotate(0deg); }
}
/* 右側の電球画像 */
.performance-image {
  flex-shrink: 0;
}

.bulbs-img {
  max-width: 350px;
  height: auto;
  transform: translateY(-130px);
}
@media screen and (max-width: 768px) {

  .performance-section {
    min-height: auto;
    padding: 40px 0 100px;
  }

  /* 右上三角形 */
  .performance-section::before {
    width: 80%;
    height: 290px;
  }

  .performance-container {
    display: block;
    padding: 0 20px;
  }

  /* 電球 */
  .performance-image {
    position: absolute;
    top: -30px;
    right: 2px;
    z-index: 2;
  }

  .bulbs-img {
    width: 190px;
    max-width: none;
    transform: none;
  }

  /* タイトル */
  .performance-title {
    font-size: 2rem;
    line-height: 1.4;
    padding-left: 0;
    margin-top: 120px;
    margin-bottom: 25px;
  }

  .highlight {
    padding: 0 8px;
  }

  /* 説明文 */
  .performance-text p {
    padding-left: 0;
    font-size: 15px;
    line-height: 2.0;
    margin-bottom: 40px;
    margin-top: 50px;
  }

  

  /* ボタン */
  .performance-action {
    position: relative;
    justify-content: center;
    padding-left: 0;
    margin-top: 40px;
  }

  .btn-performance {
    padding: 14px 35px;
    font-size: 1rem;
    transform: none;
  }

  .btn-performance:hover {
    transform: none;
  }

  /* キャラクター */
  .char-img {
    position: absolute;
    right: 25px;
    bottom: -40px;
    height: 130px;
  }

}
/* ===== 共通表示切り替え ===== */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* ===== ハンバーガー ===== */
.hamburger {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #365184;
  margin: 5px 0;
  transition: 0.3s;
}

/* × に変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== スマホメニュー ===== */
.sp-menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1000;
}

.sp-menu.active {
  opacity: 1;
  visibility: visible;
}

.sp-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sp-menu li {
  margin: 18px 0;
}

.sp-menu a {
  font-size: 20px;
  font-weight: 700;
  color: #365184;
  text-decoration: none;
}

.sp-contact {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ECE895;
  border-radius: 30px;
  color: #365184;
}
.sp-page-title {
  display: none;
}
/* ===== レスポンシブ ===== */
@media screen and (max-width: 768px) {

  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  .header-inner {
    padding: 14px 16px;
    
  }

  .logo-text {
    font-size: 25px;
  }

  .logo-icon {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* ...他のコード... */

  /* 確実に反映させるために詳細度を上げて、一番下に記述 */
  body.company-page .intro-text .intro-sub {
    margin-top: 200px !important; /* 100pxは調整してください */
  }
  .page-hero {
    display: none;
  }
  /* スマホ専用タイトル帯の設定 */
  .sp-page-title {
    display: block;
    width: 100%;             /* ヘッダーと同じ幅（画面いっぱい） */
    background-color: #ECE895; /* お写真の黄色 */
    padding: 12px 20px;      /* 上下の厚みと左右の余白 */
    text-align: left;        /* 左寄せ（中央ならcenter） */
    
    /* ヘッダーが固定(fixed)されている場合の重なり防止 */
    position: relative;
    z-index: 10;
    margin-top: 16px;
  }

  .sp-page-title span {
    color: #fff;             /* 文字色（白抜き） */
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  /* 会社概要ページなど、ページ全体の開始位置を調整 */
  body {
    padding-top: 72px; /* ヘッダーの高さ分（既存のコードに合わせて調整） */
  }
  /* お問い合わせタイトルの位置調整 */
  .inquiry-title-wrap {
    /* 現在の指定がある場合はそれを残しつつ、margin-topを追加 */
    margin-top: 100px; /* ここの数値を大きくするほど下に下がります */
    
    /* もし左右中央寄せが崩れる場合は以下もセットで */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  /* ボルト（ネジ）のサイズもスマホ用に微調整が必要な場合 */
  .inquiry-bolt {
    width: 24px; /* PC版より少し小さくするとバランスが良いです */
    height: auto;
  }
  .inquiry-title {
    font-size: 20px;   /* お好みのサイズに調整してください（現在は20〜24pxあたりがおすすめ） */
    font-weight: 900;  /* 太さは維持 */
    letter-spacing: 0.05em;
    margin: 0;         /* 余計な余白がついている場合はリセット */
  }
  

  
}




