/* =========================
   細かいスタイル
========================= */
.top-title{
    color:#f57c00;

}

/* =========================
   共通ページタイトル
========================= */

.page-header{
    padding: 60px 0 20px;
    text-align: center;
  }

  .page-title::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:#000;
    margin:16px auto 0;
    border-radius:2px;
  }

  .page-title{
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #000;
    margin: 0;
  }

  /* スマホ */
  @media (max-width:768px){

    .page-header{
      padding: 60px 0 48px;
    }

    .page-title{
      font-size: 2rem;
    }

  }

/* =========================
   フッター
========================= */

.site-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 24px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

/* =========================
   ページ全体の背景
========================= */
body{
    background-color: #f57c00; /* オレンジ */
    font-family: 'Noto Sans JP', sans-serif;
    padding-top:70px;
    }


  /* =========================
   ナビゲーション
========================= */

.navbar-black {
    background-color: #000;
  }

  /* ロゴ */
  .nav-logo {
    height: 38px;
    width: auto;
  }

  /* ナビリンク */
  .navbar-black .nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
  }

  /* 今いるページ */
  .navbar-black .nav-link.active {
    color: #f57c00; /* オレンジ */
  }

  .navbar-black .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f57c00;
  }

  /* hover */
  .navbar-black .nav-link:hover {
    opacity: 0.7;
  }

  /* ハンバーガー */
  .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }

  /* スマホ */
  @media (max-width: 991px) {
    .navbar-collapse {
      background-color: #000;
      padding: 10px 20px;
    }
  }


  /* =========================
   ファーストビュー
========================= */
/* =========================
   HERO（ファーストビュー）
========================= */

body.home{
    padding-top:0;
    }

h1, h2, h3, .hero-catch, .menu-image span {
    font-family: 'Montserrat', sans-serif;
  }

.hero {
    height: 80vh;
    background: url('/images/hero2.jpg') center / cover no-repeat;
    position: relative;
    overflow: hidden;
  }

  /* 黒オーバーレイ */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  /* 中央配置 */
  .hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    white-space: nowrap;
  }

  /* ロゴ */
  .hero-logo {
    display: block;
    margin: 0 auto 2px; /* ← ロゴと文字の距離（最重要） */
  }

  /* キャッチコピー */
  .hero-catch {
    margin: 0;                 /* ← pタグの上下余白を完全に消す */
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: 0.08em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* ← まず極端にする */
    letter-spacing: 0.12em;

    /* 微調整（効きます） */
    transform: translateY(-2px);
  }

  /* =========================
     スマホ微調整
  ========================= */
  @media (max-width: 768px) {
    .hero {
      height: 70vh;
    }

    .hero-catch {
      font-size: 0.95rem;
      letter-spacing: 0.06em;
    }
  }



/* =========================
   トップメニューカード
========================= */

.menu-card {
    text-decoration: none;
    display: block;
  }

  .menu-image {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  /* 画像を薄く表示したい場合（任意） */
  .menu-image.about {
    background-image: url('/images/about.png');
    background-size: 150%;
    background-position: center 30%;
  }

  .menu-image.equipment {
    background-image: url('/images/equipment2.jpg');
  }

  .menu-image.contact {
    background-image: url('/images/contact.jpg');
  }

  /* =========================
   CONTACT CTA
========================= */

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 120px; /* ← 半分 */
    background-color: #000;
    color: #fff;

    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;

    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }


  @media (max-width: 768px) {
    .contact-cta {
      height: 100px;
      font-size: 1.3rem;
    }
  }



  /* ===== 黒い斜めパーツ ===== */
  .menu-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;

    background-color: #000;

    /* 斜めカット */
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
  }

  /* ===== 文字（黒パーツ上） ===== */
  .menu-image span {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 20px;

    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
/* =========================
   共通ホバー演出
========================= */

.menu-card,
.contact-cta{
  transition: all 0.3s ease;
}

/* hover時 */

.menu-card:hover,
.contact-cta:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.menu-card:hover .menu-image span{
    color:#f57c00;
  }

  .contact-cta:hover {
    background-color:#111;
    color:#f57c00;
  }

  .menu-card:hover .menu-image::before{
    background:#111;
  }

  /* =========================
     スマホ対応
  ========================= */
  @media (max-width: 768px) {
    .menu-image {
      height: 180px;
    }

    .menu-image span {
      font-size: 1.3rem;
    }
  }



/* =========================
   About セクション（完全統一版）
========================= */

.about-section {
    position: relative;
    background: transparent;

    padding: 0;              /* ← 上下paddingを撤廃 */
    margin: 64px 0;          /* ← Equipmentと完全一致 */
  }

/* =========================
   About セクションタイトル（Equipment完全一致）
========================= */

.about-section-title {
    display: block;
    margin: 0 auto 24px;   /* ← Equipmentと同一 */
    padding: 0;

    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;

    color: #000;
    text-align: center;
  }


  /* =========================
     About 本文
  ========================= */

  .about-section p {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.9;
    color: #000;
    margin-bottom: 1rem;
  }

 /* =========================
   Service & Price Section
========================= */

.service-section {
    background: transparent;     /* オレンジ地そのまま */
    padding: 32px 0 24px;        /* 下だけ少し詰める */
    margin-bottom: 56px;
  }

  /* セクションタイトル（Equipmentと完全統一） */
  .service-title {
    margin: 0 auto 36px;

    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;

    color: #000;
    text-align: center;
    position: relative;
  }

  .service-title::after {
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    margin: 14px auto 0;
    background: #000;
    border-radius: 2px;
  }

  /* サブタイトル */
  .service-subtitle {
    margin-bottom: 12px;

    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #000;
  }

  /* 価格リスト */
  .service-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;  /* ← 注意書きとの距離はここだけ */
  }

  .service-price-list li {
    background: rgba(0, 0, 0, 0.09);
    color: #000;

    padding: 16px 20px;
    margin-bottom: 6px;

    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.6;

    border-left: 6px solid #000;
  }

  /* 注意書き */
  .service-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-note-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 6px;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    color: #000;
  }

  .service-note-list li::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;

    font-weight: 900;
    color: #000;
  }

  /* =========================
     Responsive
  ========================= */

  @media (max-width: 768px) {
    .service-title {
      font-size: 2rem;
    }

    .service-price-list li {
      font-size: 1rem;
    }
  }


/* =========================
   ご依頼までの流れ（最終版）
========================= */
.flow-section{
    margin-bottom: 56px;
}

.flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .flow-list li {
    position: relative;
    padding-left: 1.4em;   /* ・分の余白 */
    margin-bottom: 5px;

    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.9;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  }

  /* 行頭の「・」 */
  .flow-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;

    color: #000;
    font-weight: 900;
  }


/* =========================
   Company Info
========================= */

.company-section .company-label{
    width:180px;
    font: size 1.1rem !important;
    font-weight:800;
    letter-spacing:0.08em;
    color: #000;
  }

  .company-section .company-value{
    flex:1;
    font-size:1.1rem !important;
    font-weight:600;
    color: #000;
  }
  .company-row{
    display:flex;
    border-bottom:1px solid rgba(0,0,0,0.2);
    padding:12px 0;
  }

  /* =========================
     Responsive
  ========================= */

  @media (max-width: 768px) {

    .about-section-title {
      font-size: 2rem;
    }

    .about-section p{
        text-align: left;
        max-width: 720px;
        margin: 0 auto;
        font-size: 0.9rem;
      }

    .price-list li {
      font-size: 1rem;
    }
  }



/* =========================
   Equipment Page 全体
========================= */

.equipment-page {
    padding: 0;
    margin: 0;
  }

  /* =========================
     Equipment Hero
  ========================= */

  .equipment-hero {
    padding: 80px 0 60px;
    text-align: center;
  }

  .equipment-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #000;
    margin-bottom: 28px;
  }

  /* =========================
     PDFダウンロード
  ========================= */

  .pdf-area {
    text-align: center;
    padding-top: 10%;
  }

  .pdf-download {
    display: inline-block;
    padding: 14px 36px;

    background: #000;
    color: #fff;

    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-decoration: none;

    border-radius: 999px;
    transition: all 0.3s ease;
  }

  .pdf-download:hover {
    background: #222;
    transform: translateY(-2px);
  }

  /* =========================
     各カテゴリブロック
  ========================= */

  .equipment-section {
    margin: 64px 0;   /* ← オレンジをしっかり見せる */
    padding: 0;
  }


/* =========================
   Equipment セクションタイトル
========================= */

.equipment-title {
    display: block;
    margin: 0 auto 24px;     /* 下だけ余白 */
    padding: 0;

    background: transparent; /* ← 白背景削除 */
    box-shadow: none;
    border-radius: 0;

    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 2.7rem;       /* ← しっかり大きく */
    font-weight: 900;        /* ← 極太 */
    letter-spacing: 0.06em;

    color: #000;
    text-align: center;
    position: relative;
  }

  /* アンダーバー */
  .equipment-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;

    background-color: #000;

    margin: 12px auto 0;     /* ← 中央配置 */
    border-radius: 2px;
  }

.equipment-list {
    margin: 0;
    padding: 0;

    background: transparent;
    box-shadow: none;

    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;

    font-size: 1.5rem;       /* ← 大きく */
    font-weight: 800;        /* ← さらに太く */
    line-height: 1.55;       /* ← 詰める */

    color: #000;
    text-align: center;      /* ← センター */
  }

  /* 各行 */
  .equipment-list span {
    display: block;

    padding: 3px 0;          /* ← 無駄な余白カット */
    margin: 0;

    letter-spacing: 0.03em;
    white-space: nowrap;     /* ← 改行させない */
  }

  /* =========================
     スマホ調整
  ========================= */

  @media (max-width: 768px) {

    .equipment-hero {
      padding: 60px 0 48px;
    }

    .equipment-hero h1 {
      font-size: 2rem;
    }

    .equipment-section {
      margin: 48px 0;
    }

    .equipment-title {
      font-size: 1.15rem;
      padding: 8px 20px;
    }

    .equipment-list {
      font-size: 0.8rem;
    }
  }

  /* =========================
   Contact Form
========================= */

.contact-form-area{
    margin: 60px 0 80px;
  }

  .contact-form{
    max-width: 720px;
    margin: 0 auto;
  }

  /* 入力欄 */

  .contact-input{
    height: 52px;
    font-weight: 600;
  }

  /* テキストエリア */

  .contact-textarea{
    resize: vertical;
    font-weight: 600;
  }

  /* 送信ボタン */

  .contact-submit{
    display: block;
    width: 100%;

    padding: 14px;

    background:#000;
    color:#fff;

    font-weight:700;
    letter-spacing:0.08em;

    border:none;
    border-radius:6px;

    transition:0.3s;
  }

  .contact-submit:hover{
    background:#222;
  }

/* =========================
   Contact SNS
========================= */

.contact-sns{
    margin:40px 0 60px;
    text-align:center;
  }

  .contact-sns-text{
    font-weight:700;
    margin-bottom:24px;
    font-size: 1.3rem;
    color: #000;
  }

  /* SNSリスト */

  .contact-sns-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
  }

  /* 1行 */

  .sns-item{
    display:flex;
    align-items:center;
    gap:12px;
  }

  /* アイコン */

  .sns-item img{
    width:36px;
    height:36px;
  }

  /* ボタン */

  .sns-button{
    display:inline-block;

    padding:10px 24px;

    font-weight:700;
    letter-spacing:0.05em;

    border-radius:999px;
    text-decoration:none;

    transition:0.3s;
  }

  /* Instagram */

  .instagram-btn{
    background:#000;
    color:#fff;
  }

  .instagram-btn:hover{
    background:#222;
  }

  /* LINE */

  .line-btn{
    background:#06C755;
    color:#fff;
  }

  .line-btn:hover{
    background:#04a94a;
  }

  .alert-danger{
    background-color: #ffe5e5;
    border-color: #ff4d4d;
    color: #d60000;
    font-weight: 700;
}