html, body {
  margin: 0;
  padding: 0;
  font-family: "BIZ UDPMincho", "MS Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #333;
  overflow-x: hidden; /* 横スクロールを完全に禁止 */
  width: 100%;
}

* {
  box-sizing: border-box; /* 内側の余白によるサイズ肥大化を防止 */
}

/* ==========================================================================
   ヘッダー（PCではロゴの横にメニューを並べる）
   ========================================================================== */
header { 
  width: 100%;
  padding: 10px 0; 
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 200; 
  letter-spacing: 0.12em; 
  line-height: 1.5; 
  font-size: 19px;
  border-bottom: 1px solid #eee; 
  background: rgba(255, 255, 255, 0.97); /* ほんのり透ける高級感のある白 */
  position: fixed; /* 📌 画面上部に固定 */
  top: 0;
  left: 0;
  z-index: 1000; /* 最前面に表示 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* スクロール時に見やすいよう軽い影を付与 */
}

.header-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  max-width: 1200px;              
  margin: 0 auto;                 
  padding: 0 20px;
  width: 100%;
}

.logo-area {
  flex-shrink: 0;
  width: 280px; 
}

.logo-area img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   ナビゲーションメニュー（PC版：白背景ベース・黒文字）
   ========================================================================== */
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-menu > ul {
  display: flex;
  background-color: transparent; 
  justify-content: flex-end; 
  gap: 5px;
}

.nav-menu > ul > li {
  position: relative; 
}

.nav-menu > ul > li > a {
  color: #111111; 
  padding: 20px 18px;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-menu > ul > li > a:hover {
  background-color: transparent; 
  color: #666666; 
}

/* PC版プルダウン */
.nav-menu .dropdown {
  position: absolute;
  top: 100%; 
  left: 0;
  width: 220px; 
  background-color: #ffffff; 
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100; 
}

.nav-menu > ul > li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); 
}

.nav-menu .dropdown li {
  border-bottom: 1px solid #f5f5f5; 
}

.nav-menu .dropdown li:last-child {
  border-bottom: none; 
}

.nav-menu .dropdown a {
  padding: 12px 20px;
  font-size: 13px;
  color: #333333;
  font-weight: normal;
}

.nav-menu .dropdown a:hover {
  background-color: #f9fafb;
  color: #111111;
}

/* デスクトップ表示ではハンバーガーボタンを非表示 */
.hamburger-btn {
  display: none;
}

/* ==========================================================================
   タブレット・スマートフォン用のスタイル（画面幅960px以下で切り替え）
   ========================================================================== */
@media screen and (max-width: 960px) {
  
  .header-container {
    padding: 5px 15px;
  }

  .logo-area {
    width: 200px; 
  }

  /* ハンバーガーボタン（四角形ミニマル） */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
    top: auto;
    right: auto;
    z-index: 120;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    cursor: pointer;
    padding: 0;
  }

  .hamburger-btn .inner {
    position: relative;
    width: 18px;
    height: 12px;
    margin-bottom: 4px;
  }

  .hamburger-btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #111111;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }

  .hamburger-btn span:nth-child(1) { top: 0; }
  .hamburger-btn span:nth-child(2) { top: 5.5px; }
  .hamburger-btn span:nth-child(3) { top: 11px; }

  .hamburger-btn::after {
    content: "MENU";
    display: block;
    font-size: 7.5px;
    font-weight: 500;
    color: #111111;
    font-family: sans-serif;
    line-height: 1;
    letter-spacing: 0.8px;
  }

  .hamburger-btn.is-active span:nth-child(1) {
    top: 5.5px;
    transform: rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active span:nth-child(3) {
    top: 5.5px;
    transform: rotate(-45deg);
  }

  .hamburger-btn.is-active::after {
    content: "CLOSE";
    letter-spacing: 0.3px;
  }

  /* スマホ時のメニュー展開（白画面がスライドイン・固定ヘッダーの下に綺麗に収まる） */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 110;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    padding-top: 80px; /* 固定ヘッダーの高さ分、上部を空ける */
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .nav-menu.is-active {
    right: 0;
  }

  .nav-menu ul {
    display: block;
    padding: 0 40px;
  }

  .nav-menu > ul > li > a {
    font-size: 14px;
    color: #222222;
    padding: 16px 5px;
    border-bottom: 1px solid #f3f4f6;
  }

  /* スマホ時のドロップダウン（左縦線階層化デザイン） */
  .nav-menu .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 2px;
    margin-bottom: 8px;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    transform: none;
    border-left: 1px solid #e5e7eb;
    border-radius: 0;
  }
  
  .nav-menu .dropdown li {
    border-bottom: none;
  }
  
  .nav-menu .dropdown a {
    font-size: 12px;
    padding: 10px 5px;
    color: #6b7280;
  }
}

/* ==========================================================================
   
   ========================================================================== */
main {
  /* 📌 固定されたヘッダー（高さ約80px）の裏側にコンテンツが潜り込まないように上部余白を確保 */
  margin-top: 75px; 
}

@media screen and (max-width: 960px) {
  main {
    margin-top: 58px; /* スマホ時はヘッダーが少し低くなるので余白も少し詰める */
  }
}

.hero-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image img { 
  width: 100%; 
  height: auto; 
  max-height: 500px; 
  object-fit: cover; 
  display: block; 
}

.main-content { 
  max-width: 1000px; 
  margin: 40px auto; 
  padding: 0 20px; 
}

 /* 通常時の画像スタイル（3枚を横並びにして20%の大きさに） */
.zoom-img {
    width: 30%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 変化をなめらかに */
    position: relative;
    z-index: 1;
    margin-right: 15px;
}

/* ── パソコン用の設定 ── */
@media (hover: hover) {
    /* マウスを乗せたときに拡大 */
    .zoom-img:hover {
        transform: scale(2.5); /* 2.5倍に拡大 */
        z-index: 10;           /* 他の画像より前面に出す */
        box-shadow: 0 10px 25px rgba(0,0,0,0.4); /* 影をつけて立体感を出す */
    }
}

/* ── スマホ（携帯）用の設定 ── */
@media (hover: none) {
    /* タップしている間、またはJavaScriptでクラスがついたときに拡大 */
    .zoom-img:active,
    .zoom-img.is-expanded {
        transform: scale(2.5);
        z-index: 10;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
}




.in1-img {
     width: 30%;
     height: auto;
     text-align: center;

}

  .iso-img {
    width:30%;
    height:auto;


}


/* 「私たちについて」セクション全体の調整 */
.main-content .about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
}

/* タイトルのデザイン（中央揃え・下線） */
.main-content .about-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #111111;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.main-content .about-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #003366; /* 信頼感のあるネイビーの線 */
}

/* キャッチコピー（大きな文字で引き込む） */
.main-content .about-section .about-lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
}

/* 本文の段落調整 */
.main-content .about-section .about-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify; /* 文字の両端をきれいに揃える */
}

.main-content .about-section .about-body p:last-child {
  margin-bottom: 0;
}

/* 強調部分のマーカー線 */
.main-content .about-section strong {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ffeedd 60%); /* 薄いオレンジのマーカー */
}

/* スマートフォン対応（画面幅768px以下） */
@media (max-width: 768px) {
  .main-content .about-section {
    padding: 40px 15px;
  }
  
  .main-content .about-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .main-content .about-section .about-lead {
    font-size: 18px;
    text-align: left; /* スマホでは左詰めで読みやすく */
  }
  
  .main-content .about-section .about-lead br {
    display: none; /* スマホでの不自然な改行を防ぐ */
  }
  
  .main-content .about-section .about-body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* アイコンを囲う丸枠の指定（フォント用に調整） */
.license-card .icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #dee2e6;
}

/* ★追加：フォントアイコン自体の色とサイズを設定 */
.license-card .icon-wrap i {
  font-size: 22px;
  color: #003366; /* STYLE様の信頼感を出す濃いネイビー */
  transition: color 0.3s ease;
}

/* マウスホバー時にアイコンの色を少し明るく変化させる */
.license-card:hover .icon-wrap i {
  color: #004488;
}

/* スマホ用の微調整 */
@media (max-width: 768px) {
  .license-card .icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
  .license-card .icon-wrap i {
    font-size: 18px; /* スマホ画面に合わせてアイコンを少し小さく */
  }
}

.license-card .icon-wrap i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* 追加した画像アイコンのサイズ調整 */
.license-card .icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .license-card .icon-wrap img {
    width: 22px;
    height: 22px;
  }
}


/* 全体を囲う白いボックス */
.license-container {
  margin-top: 60px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #003366; /* STYLE様のテーマカラー（ネイビー） */
}

/* タイトル部分 */
.license-title-box {
  text-align: center;
  margin-bottom: 35px;
}

.license-title-box .license-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #c97a00; /* ゴールド系の色で信頼感を */
  background-color: #fff9ee;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.license-title-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

/* 縦並びを解消するグリッド設定（PC時は5列並び） */
.license-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 15px !important;
}

/* 各アイコンカードの装飾 */
.license-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* マウスホバー時のエフェクト */
.license-card:hover {
  transform: translateY(-3px);
  border-color: #003366;
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 51, 102, 0.08);
}

/* アイコンを囲う丸枠 */
.license-card .icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #dee2e6;
}

/* ★新規：追加したSVGアイコンのサイズと色を指定 */
.license-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: #003366; /* アイコンをネイビー色に染める */
  transition: fill 0.3s ease;
}

.license-card:hover .icon-wrap svg {
  fill: #004488;
}

/* 業種名の文字 */
.license-card .license-name {
  font-size: 13px;
  font-weight: 700;
  color: #444444;
  line-height: 1.4;
}

/* タブレット・スマホ用の画面サイズ調整（レスポンシブ） */
@media (max-width: 992px) {
  .license-grid {
    grid-template-columns: repeat(4, 1fr) !important; /* 画面幅が中くらいなら4列 */
  }
}

@media (max-width: 768px) {
  .license-container {
    padding: 30px 15px;
    margin-top: 40px;
  }
  
  .license-grid {
    grid-template-columns: repeat(3, 1fr) !important; /* スマホサイズなら3列 */
    gap: 10px !important;
  }
  
  .license-card {
    padding: 10px 5px;
  }
  
  .license-card .icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
  
  .license-card .icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  
  .license-card .license-name {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .license-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 横幅の狭いスマホは2列 */
  }
}



/* ==========================================================================
   会社概要
   ========================================================================== */

  
main dl {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 5rem;
}
main dt {
    width: 20%;
    margin: 0;
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.2em 1em 1em 0;
    vertical-align: middle;
    align-items: center;
}
main dd {
    width: 80%;
    margin: 0;
    padding: 1em 1em 1em 0;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
}

h1 {
    
    text-align: center;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 200; 
    letter-spacing: 0.12em; 
    line-height: 1.8; 
    font-size: 40px;

}

h5 {
    text-align: center;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 200; 
    letter-spacing: 0.12em; 
    line-height: 1.8; 
    font-size: 40px;
    background: rgba(255, 255, 255, 0.97);

}


/* SDGsバナー画像のサイズ制御 */
.sdgs-banner-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: block;
}

/* SDGsテキストエリア内の調整 */
main dd h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

main dd p {
    margin-bottom: 20px;
    color: #444;
}

/* 箇条書き（ul）のバランス調整 */
.sdgs-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #444;
}

.sdgs-list li {
    margin-bottom: 12px; /* 項目ごとの隙間 */
    line-height: 1.6;
}

/* ISOロゴ部分の全幅保持ルール */
.iso-logo-wrapper {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}

.iso-img {
    max-width: 240px;
    height: auto;
    display: block;
}


* ==========================================
   ISO9001 セクション独自のスタイル
========================================== */

/* 左側：ロゴエリアの調整（SDGsのdtと同じpaddingと配置にする） */
main dt.iso-logo-area {
    display: block; /* 共通のスタイルに合わせる */
    width: 20%;
    margin: 0;
    padding: 1.2em 1em 1em 0; /* SDGsのdtのインラインスタイルと統一 */
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}

/* ISOロゴ画像をSDGsバナーと全く同じサイズ感にするためのクラス */
.iso-img-fix {
    width: 100% !important;
    max-width: 150px !important; /* SDGsの最大幅設定「max-width: 150px」と完全に一致させます */
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* 右側：コンテンツエリアの調整 */
main dd.iso-content-area {
    width: 80%;
    box-sizing: border-box;
    padding: 1em 1em 2em 20px; /* 左側に20pxの隙間を作ってロゴとの間隔を空ける */
}

/* 導入文の装飾 */
.iso-intro-box {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}
.iso-intro-box p {
    margin: 0 0 8px 0;
}
.iso-intro-box p:last-child {
    margin-bottom: 0;
}

/* 認証詳細情報テーブルの装飾 */
.iso-info-table {
    width: 100%;
    border-collapse: collapse;
    color: #444;
    line-height: 1.6;
    text-align: left;
    font-size: 0.95rem;
}
.iso-info-table tr {
    border-bottom: 1px dashed #eee;
}
.iso-info-table tr:first-child {
    border-top: 1px dashed #eee;
}
.iso-info-table th {
    width: 30%;
    padding: 12px 10px 12px 0;
    font-weight: bold;
    vertical-align: top;
}
.iso-info-table td {
    width: 70%;
    padding: 12px 0;
    vertical-align: top;
}

/* スマホ対応（画面幅が狭いときは縦並びにする） */
@media (max-width: 768px) {
    main dt.iso-logo-area {
        width: 100% !important;
        border-bottom: none;
        padding: 1.2em 0 1em 0;
    }
    main dd.iso-content-area {
        width: 100% !important;
        padding-left: 0;
    }
    .iso-info-table th, 
    .iso-info-table td {
        display: block;
        width: 100%;
        padding: 6px 0;
    }
    .iso-info-table th {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   お問い合わせ
   ========================================================================== */
body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
    padding: 40px 20px;
}

/* フォームのコンテナ */
.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h2 {
    text-align: center;
    color: #1a365d; /* 誠実な紺色 */
    margin-bottom: 10px;
    font-size: 28px;
}

.form-subtext {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 入力グループのスタイル */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2d3748;
}

/* 必須ラベル */
.required {
    background-color: #e53e3e;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

/* 入力欄コントロール */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3182ce; /* フォーカス時に青く光る */
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

/* チェックボックス */
.checkbox-group {
    text-align: center;
    margin: 30px 0;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input {
    margin-right: 8px;
    transform: scale(1.2);
}

.checkbox-group a {
    color: #3182ce;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* 送信ボタン */
.form-submit {
    text-align: center;
}

.form-submit button {
    background-color: #3182ce; /* コーポレートカラー（青） */
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(49, 130, 206, 0.2);
}

.form-submit button:hover {
    background-color: #2b6cb0;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
    h2 {
        font-size: 22px;
    }
    .form-submit button {
        width: 100%;
        padding: 14px;
    }
}

/* ==========================================================================
   プライバシーポリシー
   ========================================================================== */

  .pp-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    line-height: 1.8;
  }
  .pp-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #111111;
  }
  .pp-lead {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
    text-align: justify;
  }
  .pp-section {
    margin-bottom: 32px;
  }
  .pp-heading {
    font-size: 18px;
    font-weight: 700;
    border-left: 4px solid #0056b3;
    padding-left: 12px;
    margin-bottom: 16px;
    color: #111111;
  }
  .pp-text {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: justify;
  }
  .pp-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .pp-list-item {
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
  }
  .pp-list-item::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #0056b3;
    font-weight: bold;
  }
  
  /* 2カラム表示の窮屈さを解消するため、上下に並べるスッキリしたカード型デザインに変更しました */
  .pp-dl {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin: 0;
  }
  .pp-dt {
    font-weight: 700;
    color: #555555;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .pp-dd {
    margin: 0 0 16px 0;
    color: #111111;
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
  }
  .pp-dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .pp-date {
    text-align: right;
    font-size: 14px;
    color: #666666;
    margin-top: 40px;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
  }
  @media (max-width: 576px) {
    .pp-container {
      padding: 24px 16px;
    }
  }

/* モーダル全体の背景（最初は非表示） */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(0, 0, 0, 0.6); /* 背景を少し暗めの半透明に */
}

/* 小窓（白枠のコンテンツ部分）ご提示のスタイルを上書き・統合 */
.modal-content.pp-container {
    margin: 40px auto;
    width: 90%;
    max-height: calc(100% - 80px); /* 画面からはみ出さないように高さを制限 */
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* 内部を縦並びに */
}

/* モーダル内のタイトル調整 */
.modal-content .pp-title {
    margin-top: 10px;
    padding-right: 20px;
}

/* 本文エリア（枠内でスクロールできるように設定） */
.modal-body {
    overflow-y: auto;
    padding-right: 8px;
    margin-top: 20px;
}

/* 閉じるボタン（×） */
.modal-close {
    color: #aaaaaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s ease;
}
.modal-close:hover {
    color: #111111;
}

/* スマホ用の微調整 */
@media (max-width: 576px) {
    .modal-content.pp-container {
        margin: 20px auto;
        max-height: calc(100% - 40px);
        padding: 30px 16px 20px 16px;
    }
    .modal-close {
        top: 15px;
        right: 15px;
    }
}


/* ==========================================================================
   Work
   ========================================================================== */
work-pic{
        width:100;
}
 


.work-pic img {
  width: 85%;
  margin-left:auto;
  margin-right:auto;
  display:block;
}

.ready-img{
     height:auto;
     width:60%;
     text-align: center;
}

.t1 img {
  max-width: 100%;  /* 画面幅を超えないようにする */
  height: auto;     /* 縦横比（アスペクト比）を維持する */
  display: block;   /* 画像の下にできる不要な隙間を消す */
  margin: 0 auto;   /* 必要に応じて画像を中央寄せにする */
}


/* ==========================================================================
   フッター
   ========================================================================== */
footer { 
  background: #f8f9fa; 
  padding: 30px 20px; 
  border-top: 1px solid #ddd; 
  font-size: 14px; 
}

.footer-container { 
  max-width: 1000px; 
  margin: 0 auto; 
  display: flex; 
  justify-content: space-between; 
}

.footer-links ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.footer-links li { 
  margin-bottom: 8px; 
}

.footer-links a { 
  color: #666; 
  text-decoration: none; 
}

.copyright { 
  text-align: center; 
  margin-top: 30px; 
  color: #999; 
}

/* スマートフォン向けのスタイル（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;    /* 要素を中央に寄せる（左寄せが良い場合は削除してください） */
    text-align: center;     /* 文字や画像を中央揃えにする */
  }

  .footer-about {
    margin-bottom: 30px;    /* 画像とサイトマップ（のタイトル）の間の隙間 */
  }

  .footer-links h4 {
    margin-top: 0;          /* 余計な余白をリセット */
    margin-bottom: 15px;    /* サイトマップのタイトルとリンク一覧の間の隙間 */
  }
}