header{
    text-align: left;
}

.logo {
  width: 150px;
  height: auto;
}

h1{
    text-align: center;
}

.menu {
  display: flex;
  list-style: none; /* ・ を消す */
  padding: 0;        /* 余白をリセット */
  justify-content: center; /* 真ん中に並べる */
  font-family:  'Copperplate Gothic Light', 'Copperplate', fantasy;
  font-weight: 700;
}

.menu li {
  margin: 0 40px; /* 左右に間隔 */
  font-size: 18px;
}

.menu li a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;  /* 色変化をなめらかに */
}

.menu li a:hover {
  color: #666;   /* ホバー時にちょっとグレーに */
}

.sns-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.scroll-outer {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  cursor: grab;
}

.scroll-inner {
  display: flex;
  width: max-content; /* ← これで幅の自動調整 */
  animation: scroll-x 200s linear infinite;
}

.scroll-outer:hover .scroll-inner {
  animation-play-state: paused;
}

.scroll-image {
  flex: none;
  height: 450px;
  margin-right: 0;
}

.scroll-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* スクロール画像にリンクをつけた場合でも崩れないように */
.scroll-image a {
  display: block;
  height: 100%;
}

.scroll-image a img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.scroll-image:hover img {
  filter: brightness(60%); /* 暗くする */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* クリックを画像に通す */
}

.scroll-image:hover .overlay {
  opacity: 1;
}


/* ▼ 画像一覧をグリッドで整列・中央寄せ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 横幅280pxで自動で列数調整 */
  gap: 30px;                 /* 各画像の間に30pxの余白 */
  max-width: 1000px;         /* 全体の横幅を1000pxまでに制限して中央に配置 */
  margin: 0 auto;            /* 中央寄せ */
  padding: 60px 20px;        /* 上下に余白をたっぷり、左右も20px */
}

/* ▼ 各画像アイテムの基本スタイル */
.work-item {
  position: relative;        /* オーバーレイ用に relative を指定 */
  overflow: hidden;          /* オーバーレイや画像のはみ出しを隠す */
}

/* ▼ 画像本体 */
.work-item img {
  width: 100%;               /* グリッドの幅に合わせる（=280px以内） */
  height: 200px;              /* 縦は自動調整 */
  object-fit: cover;         /* はみ出さないように切り取り */
  display: block;
  transition: filter 0.3s ease, opacity 0.3s ease;  /* ← スムーズ化 */
  will-change: filter, opacity;  /* ← パフォーマンス向上 */
}

/* ▼ ホバーで画像を暗くする */
.work-item:hover img {
  filter: brightness(60%);
}

/* ▼ キャプション用のオーバーレイ */
.work-item .overlay {
  position: absolute;        /* 画像の上に重ねるために絶対位置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;             /* 中央揃え（上下左右） */
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-family: 'Playfair Display', serif;
  transition: opacity 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);  /* ← うっすら背景で自然に */
  transition: opacity 0.3s ease;
}

/* ▼ ホバー時にキャプションを表示 */
.work-item:hover .overlay {
  opacity: 1;
}

.caption-date {
  font-size: 10px;
  color: #ccc;
  margin-bottom: 2px;
}

.caption-project {
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.caption-title {
  font-size: 12px;
  font-weight: bold;
  color: white;
}

/* モーダル全体 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* モーダル内の画像 */
.modal img {
  display: block;
  width: auto;
  max-width: 90vw;    /* 横に広がりすぎないように */
  max-height: 80vh;   /* 縦もはみ出ないように */
  object-fit: contain;  /* 画像のアスペクト比を保ったままフィットさせる */
  margin: auto;         /* 中央揃え */

}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← 左揃え */
  gap: 10px;
  width: fit-content;
  max-width: 90vw; /* ← 画像のサイズとバランスを保つ */
}

#modal-caption {
  color: white;
  text-align: left;
  margin-top: 0px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90vw;
  word-break: break-word; /* ←長い文字対策 */
  font-family: 'Playfair Display', serif;
}

.caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  max-width: 90vw;
  padding: 0 10px;
  word-break: break-word; /* ← 長い単語で折り返す */
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}


/* ▼ Companyページ 全体レイアウト */
.company-container {
  max-width: 900px;       /* 横幅制限して中央揃え */
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
  color: #222;
  line-height: 1.8;
}

/* ▼ タイトル */
.company-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ▼ 説明文 */
.company-description {
  font-size: 12px;
  text-align: center;
  margin-bottom: 60px;
}

/* ▼ 中見出し（会社情報・マップ） */
.company-info h2,
.map-placeholder h2 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

/* ▼ 会社情報のリスト */
.company-info ul {
  list-style: none;
  padding: 0;
  font-size: 12px;
  text-align: center;
}

.company-info li {
  margin-bottom: 5px;
}

.map-placeholder {
  background-color: #f5f5f5;
  padding: 10px 20px;        /* 少し余白を小さめに */
  margin: 40px auto;         /* 上下の距離も少し縮める */
  border-radius: 12px;       /* 角丸を少し小さく */
  max-width: 800px;          /* 横幅を狭めてコンパクトに */
  text-align: center;
}

.map-placeholder h2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.map-placeholder iframe {
  width: 90%;
  max-width: 500px;
  height: 280px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* ▼ お問い合わせリンク（ボタン風） */
.to-contact {
  text-align: center;
  margin-top: 60px;
}

.to-contact a {
  font-size: 12px;
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.to-contact a:hover {
  background-color: #444;
}





footer {
  text-align: center;      /* テキストを中央寄せ */
  font-size: 14px;         /* 文字サイズを14pxに設定 */
  color: #777;             /* 薄いグレーの文字色にする（読みやすさUP） */
  padding: 20px;           /* 上下左右に20pxの余白をつける */
  background-color: #f8f8f8; /* 背景を明るめのグレーに（区切り感が出る） */
  font-family: 'Times', 'Arial Narrow', Arial, sans-serif;
}







@media screen and (max-width: 768px) {
  
    .logo {
    width: 70px;   /* ← ロゴ小さく（元が200px前後なら） */
    height: auto;
  }
  
  
  .menu {
    flex-direction: row;        /* 横並び */
    flex-wrap: nowrap;          /* ← 折り返さない */
    margin-top: 15px;
    justify-content: center;
    gap: 12px;                  /* ちょっとだけ間あける */
    padding: 1px 10px;
    flex-shrink: 1;
    overflow-x: auto;   
  }

  .menu li {
    margin: 0;
    font-size: 12px;            /* ← 詰めた分フォントサイズ調整 */
    white-space: nowrap;
  }

  .scroll-image {
  width: auto;
  height: 200px;  /* ← 好きな高さにしてOK。PCと同じ450pxでもいいよ */
  }

  .scroll-image img {
  width: auto;
  height: 100%;
  }

  .scroll-outer {
  -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
  margin-top: 20px;
}

  .sns-icon {
    width: 10px;
  }

    footer {
    padding: 4px 0; /* 上下の余白を圧縮 */
  }
  footer p {
    font-size: 5px;  /* ← フッターの文字サイズちょい小さく */
    text-align: center;
  }

  header {
    padding-top: 30px;
    text-align: center;
  }

    .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* ← スマホは2列とかが見やすい！ */
    gap: 16px;
    padding: 0 16px;
  }

  .work-item {
    width: 100%;
  }

  .work-item img {
    width: 100%;
    height: 100px;       /* ← 固定高さにするのがポイント！好きな高さに調整OK */
    object-fit: cover;   /* ← はみ出さずにトリミングしつつ、バランスよく表示 */
    display: block;
  }


  .overlay {
    position: static;
    background: none;
    text-align: left;
    padding: 10px 0;
  }

  .caption-date,
  .caption-project,
  .caption-title {
    font-size: 10px;
    line-height: 1.4;
    color: #fff;
  }

 .company-container {
    padding: 20px 16px;
  }

  .company-title {
    font-size: 10px;
    margin-bottom: 24px;
    text-align: center;
  }

  .company-description {
    font-size: 8px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
  }

  .company-info h2,
  .map-placeholder h2 {
    font-size: 10px;
    margin-top: 32px;
    margin-bottom: 16px;
    text-align: center;
  }

  .company-info ul {
    font-size: 8px;
    padding-left: 0;
    list-style: none;
  }

  .company-info li {
    margin-bottom: 8px;
  }


    .map-placeholder iframe {
    width: 80% !important;  /* ← これが大事 */
    height: auto;            /* 高さも可変にするなら */
  }
  
  .map-placeholder {
    background: none;
    padding: 0;
    box-shadow: none; /* もし影とかつけてたらこれも消す */
  }

  .to-contact {
    margin-top: 40px;
    text-align: center;
  }

  .to-contact a {
    font-size: 10px;
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
  }


}




