﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ナビゲーション */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: 30px 40px;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
}

.logo-subtitle {
  font-size: 10px;
  letter-spacing: 2px;
  color: #666;
}


.logo-link { display:flex; align-items:center; text-decoration:none; }
.logo-image { height:32px; width:auto; display:block; }
@media (max-width: 768px) { .logo-image { height:28px; } }
@media (max-width: 560px) { .logo-image { height:26px; } }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.6;
}
/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
}

/* メインコンテンツ */
.content {
  margin-top: 100px;
}

/* ヒーロー */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  position: relative;
}

.hero-visual {
  width: 400px;
  height: 400px;
  margin-bottom: 50px;
  position: relative;
}

/* メインビジュアル画像用 */
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 波形パターン（画像がない場合のフォールバック） */
.wave-pattern {
  width: 100%;
  height: 100%;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 100;
  letter-spacing: 12px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 6px;
  color: #666;
}

.hero-japanese {
  font-size: 14px;
  margin-top: 20px;
  letter-spacing: 4px;
  color: #999;
}

/* PICK UP セクション */
.pickup-section {
  padding: 120px 40px;
  background: #f7f7f7;
}

.pickup-container {
  max-width: 960px;
  margin: 0 auto;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pickup-card {
  display: block;
  padding: 0 16px 20px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pickup-thumb {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0 0 16px;
  background: #efefef;
}

.pickup-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pickup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.pickup-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.pickup-number {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 500;
  color: #2f73b9;
}

.pickup-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: #999;
}

.pickup-title {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 14px;
}

.pickup-text {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
  color: #666;
}

/* セクションタイトル */
/* .section-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #000;
} */

/* セクションタイトル依頼のとおりの調整してみる（文字＋横線デザイン） */
.section-title {
  display: flex; /* 文字と線を横並び */
  align-items: center; /* 垂直位置を揃える */
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 60px;
  white-space: nowrap; /* できるだけ改行させない */
}

/* タイトルの後ろに横線を伸ばす */
.section-title::after {
  content: "";
  flex: 1; /* 余白いっぱいに伸びる */
  height: 1px;
  margin-left: 24px; /* 文字と線の距離 */
  background: #cfd5dd; /* 線の色 */
}

/* 先頭の1文字だけ色を変える（ABOUTのAを青くするイメージ） */
.section-title-initial {
  color: #2f73b9;
}

/* ABOUT セクション */
.about-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
/* 左の縦並び「ABOUT WALLTECH」 */
.about-vertical-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #999;
  line-height: 1.8;
  /* ちょっと上から始まるように微調整 */
  margin-top: 40px;
}
.about-vertical-label span {
  display: block;
  transform: rotate(90deg);
  transform-origin: center center;
}
.about-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-images {
  display: flex;
  gap: 24px;
  flex: 1;
  align-items: flex-start;
}

/* コメントアップ時は削除わすれないようにめもめも */
/* 平行四辺形風のカード */
.about-image {
  width: 320px;
  height: 440px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transform: skewX(-15deg); /* ← 左右の辺だけ斜め */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 中の画像を逆向きに傾けて、見え方はまっすぐに */
.about-image img {
  width: 160%; /* 角が失敗。かなり大きめにする */
  height: 160%;
  object-fit: cover;
  transform: translateX(-15%) /* ちょっと左にずらす */ skewX(15deg);
  transform-origin: center;
}

/* 左右で少し位置をずらし */
.about-images .about-image:first-child {
  margin-top: 20px;
  transform: skewX(-15deg) translateX(20px);
}

.about-images .about-image:last-child {
  margin-top: 60px;
  transform: skewX(-15deg) translateX(20px);
}

.about-image {
  width: 200px;
  height: 300px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}

/* 画像対応 */
.about-image img {
  width: 200%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1.5;
}

.about-title-jp {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.about-title-en {
  font-size: 12px;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 40px;
}

.about-description {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 2px;
}

/* ARTIST セクション */
.artist-section {
  padding: 120px 40px;
  background: #fafafa;
}

.art-section {
  background: #ffffff;
}

.artist-container {
  max-width: 1400px;
  margin: 0 auto;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
  justify-items: center;
}

/* ARTIST セクション：縦ラベル＋カードの並び */
.artist-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 60px; /* タイトルとの間 */
  justify-content: center;
}

/* ホーム内のARTISTグリッドはartist-contentの中で上余白なし */
.artist-content .artist-grid {
  margin-top: 0;
}

/* 左の縦「ARTIST」 */
.artist-vertical-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.3em;
  color: #e3a1a1;          /* 薄い赤？だとおもう*/
  line-height: 1.6;
  margin-top: 40px;        /* 少し下からスタート */
}

/* 文字を縦に積みつつ、横向きに90度倒す */
.artist-vertical-label span {
  display: block;
  transform: rotate(90deg);
  transform-origin: center center;
}

/* タイトルの先頭文字だけ薄い赤にしたい場合（任意） */
.artist-title-initial {
  color: #e3a1a1;
}


.artist-card {
  background: white;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.artist-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}

/* アーティスト画像対応 */
.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

.artist-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 2px;
}

.artist-name {
  padding: 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* MODELER セクション */
.modeler-section {
  padding: 120px 40px;
  background: #fafafa;
}

.modeler-section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.modeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.modeler-card {
  text-align: center;
}

.modeler-image {
  width: 100%;
  aspect-ratio: 4 / 3; height: auto;
  background: #f5f5f5;
  border-radius: 2px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

/* モデラー画像対応 */
.modeler-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modeler-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.modeler-name {
  font-size: 14px;
  letter-spacing: 1px;
}

/* NEWS セクション */
.news-section {
  padding: 120px 40px;
  background: #fafafa;
  overflow-x: hidden;
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-list {
  margin-top: 60px;
}

.news-item {
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.news-date {
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.news-title {
  font-size: 14px;
  letter-spacing: 2px;
}

/* COMPANY セクション */
.company-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.company-content {
  display: flex;
  gap: 80px;
  margin-top: 60px;
}

.company-info {
  flex: 1;
}

.company-info .contact-btn {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
}

.company-table {
  width: 100%;
  font-size: 13px;
  line-height: 2.5;
}

.company-table td {
  padding: 10px 0;
  letter-spacing: 1px;
}

.company-table td:first-child {
  width: 120px;
  color: #666;
}

.company-image {
  width: 100%;
  max-width: 450px;     /* ← 適宜調整（縦長に見える幅に） */
  height: 650px;        /* ← 縦長にしたい高さを指定 */
  overflow: hidden;
  border-radius: 4px;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* ← 縦にフィットしつつ切れ方が自然 */
}

/* CONTACT ボタン */
.contact-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 18px 60px;
  background: #1a73e8;
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  border-radius: 30px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #1557b0;
}

/* フッター */
footer {
  padding: 60px 40px;
  background: #1a1a1a;
  color: white;
  text-align: center;
}

.footer-text {
  font-size: 10px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 24px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ページ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* アーティスト詳細ページ */
.artist-detail-page {
  padding: 150px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: #666;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.back-link:hover {
  color: #000;
}

.artist-detail-content {
  display: flex;
  gap: 80px;
}

.artist-main-image {
  flex: 1;
  height: 500px;
  background: #e0e0e0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* アーティスト詳細画像対応 */
.artist-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-info {
  flex: 1;
}

.artist-info h2 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.artist-info-table {
  width: 100%;
  font-size: 13px;
  line-height: 2;
  margin-bottom: 40px;
}

.artist-info-table td {
  padding: 8px 0;
  letter-spacing: 1px;
}

.artist-info-table td:first-child {
  width: 100px;
  color: #666;
}

.artist-info h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.artist-info p {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1px;
  color: #666;
}

.art-author-link {
  color: #1a73e8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.art-author-link:hover {
  color: #1557b0;
  border-color: #1557b0;
}


.art-link {
  color: #2f73b9;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.art-link:hover {
  color: #1557b0;
  border-color: #1557b0;
}.art-map {
  width: 100%;
  height: 260px;
  margin-top: 12px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.art-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.artist-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gallery-image {
  height: 250px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

/* ギャラリー画像対応 */
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.label-blue span {
  color: #2f73b9; /* ABOUT：青 */
}

.label-red span {
  color: #d66a6a; /* 次のセクション：薄い赤 */
}

.label-green span {
  color: #7caf78; /* さらに別のセクション用 */
}
.label-blue span {
  color: #2f73b9;
  font-size: 14px;
}

.label-red span {
  color: #d66a6a;
  font-size: 12px;
}

/* MODELER セクション：縦ラベル＋グリッド配置 */
.modeler-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 60px;
}

/* MODELER ↓ の縦文字 */
.modeler-vertical-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.3em;
  color: #d8bc7a; /* 金色（PDFに近い淡金色） */
  line-height: 1.6;
  margin-top: 40px;
}

.modeler-vertical-label span {
  display: block;
  transform: rotate(90deg);
  transform-origin: center center;
}

/* タイトル M を金色にする */
.modeler-title-initial {
  color: #d8bc7a;
}

/* モデラーのカードを少し右に寄せる場合（調整OK） */
.modeler-content .modeler-grid {
  margin-top: 0;
}


/* ================================
   WASTE MATERIALS セクション
   ================================ */

.waste-section {
  padding: 120px 40px;
  background: #ffffff;
}

.waste-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* タイトルを右側に寄せて、左にラインを伸ばす */
.waste-header {
  margin-bottom: 60px;
}

/* 既存の .section-title を利用しつつ、ラインを左側に反転 */
.waste-section .waste-section-title {
  justify-content: flex-end; /* 念のため右寄せ寄りの感覚に */
}

.waste-section .waste-section-title::after {
  order: -1;           /* ラインをテキストの左側に移動 */
  margin-left: 0;
  margin-right: 24px;  /* ラインと文字の間隔 */
}

/* タイトル先頭 W の色（見本に近い淡いグレー寄りブルーでもOK） */
.waste-title-initial {
  color: #a9b6c8;
}

/* 下部レイアウト：画像＋テキスト＋縦ラベル */
.waste-main {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: center;
}

/* 左：平行四辺形4枚 */
.waste-images {
  display: flex;
  gap: 20px;
  flex: 1.4;
}

.waste-image {
  width: 220px;
  height: 260px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transform: skewX(-18deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 中の画像を逆スキュー＋拡大して角を埋める */
.waste-image img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: skewX(18deg) translateX(-10%);
  transform-origin: center;
}

/* 少しだけ段差をつけて、見本っぽく斜めの流れを出す */
.waste-images .waste-image:nth-child(1) {
  margin-top: 40px;
}
.waste-images .waste-image:nth-child(2) {
  margin-top: 20px;
}
.waste-images .waste-image:nth-child(3) {
  margin-top: 0;
}
.waste-images .waste-image:nth-child(4) {
  margin-top: 20px;
}

/* 中央～右：テキストブロック */
.waste-text {
  flex: 1;
}

.waste-heading {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.waste-sub {
  font-size: 14px;
  letter-spacing: 2px;
  color: #5e87b8; /* 見本っぽい青 */
  margin-bottom: 20px;
}

.waste-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 1px;
  color: #555;
}

.waste-list li::before {
  content: "・";
  margin-right: 4px;
}

/* 右端：縦の MATERIALS */
.waste-vertical-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.3em;
  color: #c8c8c8;
  line-height: 1.6;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 4px;
}

.waste-vertical-label span {
  display: block;
  transform: rotate(90deg);
  transform-origin: center center;
}

@media (min-width: 769px) {
  .waste-images,
  .waste-text,
  .waste-vertical-label {
    flex: 0 0 auto;
  }
}

.waste-more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.waste-more-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #cfd5dd;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.waste-more-link:hover {
  color: #000;
  border-color: #000;
}

/* 左：平行四辺形4枚（サイズ縮小 & 平行配置）修正用。あとで統合 */
.waste-image {
  width: 150px;               /* ← 今の2/3くらいに縮小 */
  height: 250px;              /* ← アスペクト比は好みで調整OK */
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transform: skewX(-18deg);   /* ← 平行四辺形の傾きそのまま */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 中の画像：角が出ないように大きめにして skew 補正 */
.waste-image img {
  width: 180%;
  height: 180%;
  object-fit: cover;
  transform: skewX(18deg) translateX(-18%);
  transform-origin: center;
}

/* 画像4枚の段差（margin-top）を削除して完全に平行にする */
.waste-images .waste-image {
  margin-top: 0 !important;
}



.waste-images {
  justify-content: center;
}

.waste-image.waste-image-single {
  width: min(680px, 100%);
  height: 300px;
  padding: 10px;
  background: #f0f0f0;
  transform: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.waste-image.waste-image-single img {
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: contain;
}

/* heroの書き換え。面倒なので最後に追加 */
/* ヒーロー */
.hero {
  min-height: 70vh;                /* 画面の7割くらいの高さを確保 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;             /* 背景を真っ白に */
  position: relative;
  padding: 80px 0 120px;           /* 上下に少し余白 */
}

/* ヒーロー画像の枠：画面幅いっぱいまで広げつつ最大幅を制限 */
.hero-visual {
  width: min(80vw, 1200px);        /* 画面幅の80% or 1200px の小さい方 */
  margin: 0 auto;
  position: relative;
}

/* 画像をできるだけ大きく表示（縦横比は崩さない） */
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.contact-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;   /* ← 中央揃え */
  margin-top: 60px;
}
/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 20px;
  }
  .navigation {
    padding: 18px 20px;
  }
  .nav-container {
    max-width: 100%;
    gap: 12px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 200px;
  }
  .navigation.open .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .language-toggle {
    width: 36px;
    height: 36px;
  }
  .pickup-section,
  .artist-section,
  .news-section,
  .company-section,
  .waste-section {
    padding: 80px 20px;
  }
  .pickup-container,
  .artist-container,
  .news-container,
  .company-section {
    max-width: 100%;
  }
  .pickup-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .pickup-thumb {
    height: 260px;
  }
  .artist-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: center;
  }
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .artist-image,
  .modeler-image {
    height: 260px;
  }
  .about-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .about-images {
    flex-direction: row;
    gap: 16px;
  }
  .about-image img {
    width: 100%;
    height: auto;
  }
  .company-content {
    flex-direction: column;
  }
  /* waste */
  .waste-main {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .waste-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  .waste-image {
    width: 45%;
    min-width: 180px;
    height: 220px;
    margin-top: 0 !important;
  }
  .waste-image.waste-image-single {
    width: min(520px, 100%);
    height: 260px;
  }
  .waste-vertical-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .pickup-section,
  .artist-section,
  .news-section,
  .company-section,
  .waste-section {
    padding: 60px 16px;
  }
  .section-title {
    font-size: 22px;
  }
  .pickup-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .pickup-card {
    padding: 0 12px 16px;
  }
  .pickup-thumb {
    height: 220px;
  }
  .navigation {
    padding: 16px;
  }
  .nav-links {
    right: 16px;
  }
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  .artist-vertical-label,
  .modeler-vertical-label {
    display: none;
  }
  .artist-image,
  .modeler-image {
    height: 220px;
  }
  .company-table td:first-child {
    width: 90px;
  }
  /* about */
  .about-section {
    overflow-x: hidden;
  }
  .about-vertical-label {
    display: none;
  }
  .about-content {
    gap: 20px;
  }
  .about-images {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 16px;
  }
  .about-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    height: auto;
    transform: none !important;
  }
  .about-image img {
    width: 100%;
    height: 100%;
    transform: none !important;
    object-fit: cover;
  }
  .about-images .about-image:first-child {
    margin-top: 0;
    transform: none !important;
  }
  /* waste */
  .waste-images {
    gap: 14px;
  }
  .waste-image {
    width: 48%;
    height: 200px;
    transform: none !important;
  }
  .waste-image.waste-image-single {
    width: min(480px, 100%);
    height: 220px;
  }
  .waste-text {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .pickup-thumb {
    height: 180px;
  }
  .artist-image,
  .modeler-image {
    height: 200px;
  }
  .company-table {
    font-size: 12px;
    line-height: 2.1;
  }
  /* about */
  .about-image {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    transform: none !important;
  }
  .about-image img {
    object-fit: cover;
    transform: none !important;
  }
  /* waste */
  .waste-image {
    width: 100%;
    height: 180px;
    transform: none !important;
  }
  .waste-image.waste-image-single {
    height: 200px;
  }
  .waste-list {
    text-align: left;
  }
}






.contact-cta-section {
  padding: 80px 40px 120px;
  background: #ffffff;
}

.contact-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-button {
  display: block;
  width: min(520px, 90%);
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 999px;
  border: 1px solid #6f5522;
  background: linear-gradient(180deg, #9b7a3a 0%, #6f5522 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  box-shadow: 0 10px 24px rgba(111, 85, 34, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #b0893f 0%, #7a5c26 100%);
  box-shadow: 0 14px 28px rgba(111, 85, 34, 0.35);
}

.contact-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 60px 16px 90px;
  }

  .contact-cta-button {
    padding: 16px 20px;
  }
}
