/* 印刷依頼ページのスタイル */
.page-header {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}
.page-header::before {
  content: "PRINTING";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  white-space: nowrap;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #333;
}
/* サブテキスト */
.page-header p {
  font-size: 1.2rem;
  color: #666;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
/* ============================== ヘッダーレスポンシブ ============================== */
@media (max-width:1250px) {
  .page-header::before {
    font-size: 15vw;
  }
  .page-header {
    padding: 5vw 20px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .page-header p {
    font-size: 1.0rem;
  }
}
/* ============================== オーダーの流れ ============================== */
/* オーダーの流れ */
.order-process {
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 20px;
}
.order-process h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.order-process p {
  text-align: center;
  margin-bottom: 20px;
}
.order-step {
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.order-step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.order-step p {
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width:600px) {
  .order-process {
    max-width: 100%;
  }
  .order-process h2 {
    font-size: 1.5rem;
  }
  .order-step {
    padding: 10px;
  }
  .order-step h3 {
    font-size: 1.2rem;
  }
  .order-step p {
    font-size: 0.8rem;
  }
}
/* ============================== 過去制作 ============================== */
/* 過去の作成事例ギャラリー */
.gallery-section {
  text-align: center;
  padding: 50px 20px;
}
.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
}
.gallery-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}
/* 横並びさせるためのラッパー */
.gallery-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
}
/* 各画像（前後） */
.gallery-images img {
  width: 48%;
  height: auto;
  margin: 0;
  border-radius: 5px;
  border-bottom: none;
}
.gallery-info {
  padding: 15px;
  background-color: #f0f4f8;
  width: 100%;
}
.gallery-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #333;
}
.gallery-info p {
  font-size: 0.95rem;
  color: #555;
  margin: 2px 0;
}
@media (max-width:1250px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 100%;
  }
}
@media (max-width:600px) {
  .gallery-section h2 {
    font-size: 1.5rem;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  .gallery-info h3 {
    font-size: 1.0rem;
  }
  .gallery-info p {
    font-size: 0.8rem;
  }
}
/* ============================== 印刷技術 ============================== */
.technology-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 40px;
}
.technology-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.technology-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.technology-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 80%;
  margin: 0 auto;
}
/* 各設備アイテムのスタイル（カード化＋メリハリ） */
.tech-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* 画像 */
.tech-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
/* 説明文 */
.tech-item p {
  margin-top: 8px;
  padding: 12px 15px;
  font-size: 0.95rem;
  color: #333;
  background-color: #f0f4f8;
  border-radius: 8px;
  line-height: 1.6;
}
.tech-divider {
  width: 100%;
  border: none;
  border-top: 2px dashed #82a7c4; /* 淡いブルー、やや濃いめ */
  margin: 16px 0;
}
@media (max-width:1250px) {
  .technology-gallery {
    max-width: 100%;
  }
}
@media (max-width:600px) {
  .technology-section h2 {
    font-size: 1.5rem;
  }
  .technology-section p {
    font-size: 1.0rem;
    margin-bottom: 5px;
  }
  .technology-gallery {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  /* 説明文 */
  .tech-item p {
    font-size: 0.8rem;
  }
}