/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

@media (max-width: 768px) {
	.main-nav .container {
	    padding: 0px;
	}
}


/* ヘッダー */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.sub-nav ul {
    display: flex;
    gap: 15px;
    font-size: 12px;
    align-items: center;
}
.btn-green a {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
}

.logo {
    display: flex;         /* フレックスボックスを有効化 */
    align-items: center;   /* 垂直方向の中央揃え */
    font-size: 2rem;     /* テキストのサイズ調整（任意） */
    font-weight: bold;
    color: #00529a;        /* グループカラーの青（任意） */
}

.logo img {
    height: 70px;          /* ロゴ画像の高さを指定（任意） */
    width: auto;           /* アスペクト比を維持 */
    margin-right: 15px;    /* 画像とテキストの間の余白 */
    display: block;        /* 余計な下隙間を消す */
}

/* スマホ時のみテキストを少し小さくする場合 */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        height: 70px;      /* スマホではロゴを少し小さく */
    }
    .sub-nav ul {
        display: block;
    }
}

.logo {
    margin: 0;
    line-height: 1; /* 余計な行間を排除 */
}

.logo a {
    display: flex;
    align-items: center; /* 画像とテキストの垂直中心を完璧に揃える */
    text-decoration: none;
}

.logo img {
    height: 60px; /* キャプチャのバランスに合わせた高さ */
    width: auto;
    margin-right: 18px; /* 画像と文字の間のゆとり */
    display: block;
}

.logo-text {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 28px;      /* キャプチャに基づいた視認性の高いサイズ */
    font-weight: 700;     /* しっかりとした太文字 */
    color: #00550b;      /* メインナビと同じ紺色で統一感を出す */
    letter-spacing: 0.05em; /* 文字間をわずかに広げて高級感を出す */
    white-space: nowrap;  /* 折り返し防止 */
}

/* サブナビ（サイトマップ・プライバシーポリシー）とのバランス */
.sub-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-nav a {
    font-size: 13px;
    color: #666; /* 少しグレーに落とすとメインロゴが引き立ちます */
    text-decoration: none;
    transition: color 0.2s;
}

.sub-nav a:hover {
    color: #00529a;
    text-decoration: underline;
}

/* --- PC版の設定 --- */
.main-nav {
    background: #00529a;
    color: white;
    width: 100%;
}

.main-nav ul {
    display: grid;
    /* 1:2の比率で2列作成 */
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* 必要に応じて隙間を設定 */
    gap: 0px;
}

.main-nav li {
    border-right: 1px solid rgb(200,200,200);
}

.main-nav li:first-child {
    border-left: 1px solid rgb(200,200,200);
}

.main-nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* 高さを指定 */
    padding: 15px 30px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.main-nav li a:hover {
    border-top: 1px solid #00529a;
    border-bottom: 1px solid #00529a;
	background: white;
	color: #00529a;
}

.current {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-top: 1px solid #00529a;
    border-bottom: 1px solid #00529a;
    border-left: none;
    border-right: none;
	background: white;
	color: #00529a;
}

/* --- スマホ版の設定（メディアクエリ） --- */
@media (max-width: 768px) {
    .main-nav ul {
    	grid-template-columns: 1fr 1fr;
        border-left: none;
    }

    .main-nav li {
        border-bottom: 1px solid rgb(200,200,200);
    }

    /* 2列目の右側の線を消す調整（お好みで） */
    .main-nav li:nth-child(3) {
        border-left: 1px solid rgb(200,200,200);
    }

    .main-nav li a {
        height: 50px; /* スマホでは少し低く */
        font-size: 0.9rem;
    }
}

/* メインビジュアル */
.hero {
    width: 100%; /* 横幅は任意 */
    aspect-ratio: 1 / 0.424;
    max-height: 450px;
    background: url('../img/h_img.png') center/cover no-repeat; /* 画像を差し替えてください */
    background-color: #ddd; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero h2 { font-size: 2.5rem; margin-bottom: 10px; text-shadow: 5px 5px 5px #000; }
.hero p { text-shadow: 3px 3px 2px #000; }

/* ニュース */
.news {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}
.news-title h3 { color: #00529a; font-size: 1.2rem; margin-right: 40px; }
.news-list { flex: 1; font-size: 0.9rem; }
.news-list li { margin-bottom: 10px; }
.label { background: #eee; padding: 2px 8px; margin: 0 10px; border-radius: 3px; font-size: 0.8rem; }
.btn-round {
    background: #28a745;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
.hero h2 { font-size: 2rem; margin-bottom: 10px; }
    /* ニュースセクション全体を中央揃え */
    .news {
        flex-direction: column;
        align-items: center; /* 子要素を中央に寄せる */
        text-align: center;   /* テキストを中央揃え */
        padding: 30px 20px;
    }

    .news-title {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .news-title h3 {
        display: block;
        font-size: 1.3rem;
        margin-right: 0px;
    }

    /* タイトル内の改行を消す */
    .news-title h3 br {
        display: none;
    }

    /* ニュースリストの調整 */
    .news-list {
        width: 100%;
    }

    .news-list ul {
        border-top: 2px solid #ddd;
        padding-top: 20px;
    }

    .news-list ul li {
        display: flex;
        flex-direction: column;
        align-items: center; /* 日付・ラベル・本文をすべて中央に */
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid #ddd;
    }

    /* 日付とラベルを横並びで中央に */
    .news-list .date, 
    .news-list .label {
        display: inline-block;
        margin: 0 5px 8px; /* 左右に少し余白を作って中央で並べる */
    }

    /* 一覧を見るボタンの中央配置 */
    .news-more {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 600px) {
.hero h2 { font-size: 1.2rem; margin-bottom: 10px; }
.hero p { font-size: 0.8rem; }
}
/* サービス紹介 */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}
/* --- 基本レイアウト --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr); 
    gap: 15px;
}

.service-card {
    color: white;
    padding: 20px 10px;
    text-align: center;
    border-radius: 5px;
    grid-column: span 2; /* 基本は2列分（10分割中） */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.service-card:first-child {
    grid-column: span 10; /* 免許カードだけ全幅 */
}

.service-card {
    grid-column: span 2;
}

/* 各カードの色 */
.service-card.blue { background: #00529a; }
.service-card.orange { background: #f39c12; }
.service-card.green { background: #27ae60; }
.service-card.lightblue { background: #5dade2; }
.service-card.purple { background: #8e44ad; }
.service-card.red { background: #c0392b; }

/* タイトル・アイコン */
.service-card h4 { height: 3em; display: flex; align-items: center; justify-content: center; margin: 0; font-size: 1.1rem; }
.service-card .icon { height: 80px; display: flex; align-items: center; justify-content: center; margin: 10px 0; }
.service-card .icon img { width: auto; max-height: 100%; max-width: 150px; }

/* 下段ボタン(p) */
.service-card p {
    background: white;
    color: #333;
    padding: 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0;
}
.service-card p a { text-decoration: none; color: inherit; font-weight: bold; width: 100%; }

/* --- 【重要】1枚目カード内の4つのボタン（school_link） --- */
.school_link {
    display: flex !important;
    flex-direction: row !important; /* 横に並べる */
    list-style: none;
    padding: 0;
    margin: 15px 10px 0;
    gap: 10px;
}

.school_link li {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}

.school_link li img { width: 100%; object-fit: contain; }
.school_link li a { text-decoration: none; color: #00529a; font-size: 0.75rem; font-weight: bold; }

/* --- レスポンシブ --- */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(6, 1fr); }
    .service-card:first-child { grid-column: span 6; }
    .service-card { grid-column: span 3; }
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; } /* カード自体を縦1列に */
    .service-card, .service-card:first-child { grid-column: auto; width: 100%; min-height: auto; }
    
    /* 1枚目の中の4つボタンを2列×2段にする */
    .school_link {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
    
    .card-top { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
    .service-card h4 { height: auto; flex: 1; text-align: left; }
    .service-card .icon { height: 50px; width: 60px; margin: 0; }
}
/* 選ばれる理由 */
.reason-grid {
    display: flex; /* Flexboxを有効化 */
    gap: 30px;     /* アイテム間の隙間 */
    margin-bottom: 50px;
    justify-content: center; /* 中央揃え */
    flex-wrap: wrap; /* 画面が狭くなったら折り返す */
}

.reason-item {
    flex: 1 1 300px; /* 伸縮・縮小を許可し、基準幅を300pxに */
    text-align: center; /* テキストとアイコンを中央揃え */
    padding: 20px;
    background-color: #f9f9f9; /* 背景色（任意） */
    border-radius: 8px; /* 角丸（任意） */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 影（任意） */
}

/* アイコンとテキストのスタイル */
.reason-icon {
    width: 80px; /* アイコンの親要素の幅 */
    height: 80px; /* アイコンの親要素の高さ */
    margin: 0 auto 15px auto; /* 中央揃え＆下の余白 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 背景色をアイコンに合わせて変更したい場合 */
    /* background-color: #e0f2f7; */
    /* border-radius: 50%; */
}

.reason-icon img {
    max-width: 100%; /* 親要素からはみ出さない */
    max-height: 100%;
    height: auto;
    display: block;
}

.reason-item h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #00529a; /* タイトル色（任意） */
}

.reason-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* スマホ表示の際の調整（メディアクエリ） */
@media (max-width: 768px) {
    .reason-grid {
        flex-direction: column; /* 縦並びにする */
        gap: 20px;
    }

    .reason-item {
        flex: none; /* Flexの指定を解除 */
        width: 100%; /* 横幅いっぱい */
        padding: 15px;
    }
}
/* 採用情報 */
.recruit {
    background: url('recruit-bg.jpg') center/cover;
    background-color: #00529a;
    color: white;
    padding: 60px 0;
}
.btn-white {
    display: inline-block;
    background: white;
    color: #00529a;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 20px;
    font-weight: bold;
}

/* フッター */
.footer {
    background: #003a6d;
    color: white;
    padding: 40px 0;
    font-size: 0.8rem;
}
.footer-grid {
    display: grid;
    /* 1:2の比率で2列作成 */
    grid-template-columns: 1fr 2fr;
    /* 必要に応じて隙間を設定 */
    gap: 20px;
}

/* PC版の設定 */
.footer-info {
    /* 縦に並んでいた見出し(h5)と情報を整理 */
    display: block; 
}

.footer-info h5 {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

.footer-links h5 {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

/* 各拠点の親要素をフレックスボックスに */
.footer-info-inner {
    display: flex;
    gap: 40px; /* 拠点間の隙間 */
}

.footer-info-inner ul {
    display: grid;
    /* 1:2の比率で2列作成 */
    grid-template-columns: 1fr;
    /* 必要に応じて隙間を設定 */
    gap: 20px;
}

.footer-info p {
    margin: 0;
    line-height: 1.6;
}

.footer-links ul {
    display: grid;
    /* 1:2の比率で2列作成 */
    grid-template-columns: 1fr 1fr;
    /* 必要に応じて隙間を設定 */
    gap: 20px;
}

.address-container {
	display: flex;       /* 横並びにする */
	flex-wrap: wrap;    /* 幅が足りないときは自動で折り返す */
	gap: 0 10px;        /* 横に並んだ時の隙間（任意） */
}

/* 住所の各要素をブロックではなくインラインのように扱う */
.address-container span {
	white-space: nowrap; /* 郵便番号の途中で変な改行が起きないようにする */
}

/* スマホ表示の際の調整（メディアクエリ） */
@media (max-width: 768px) {
    /* フッター全体のグリッドを縦並びに変更 */
    .footer-grid {
        display: flex;
        flex-direction: column; /* 横並びから縦並びに変更 */
        gap: 30px;              /* 各ブロック間の隙間 */
        text-align: left;     /* 全体を中央揃えにする（お好みで） */
    }

.footer-links ul {
    grid-template-columns: 1fr;
}

   /* サイトマップ等のリストも中央に寄せる */
    .footer-sub ul {
        display: flex;
        flex-direction: column; /* リストも縦並びに */
        gap: 10px;
        padding: 0;
    }

    /* 見出しのスタイル調整 */
    .footer h5 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
}

/* 採用情報 */
.recruit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px
}

/* スマホ表示の際の調整（メディアクエリ） */
@media (max-width: 768px) {
	.recruit-grid {
	    grid-template-columns: 1fr;
	}
}

.recruit-card {
    color: #333; /* 文字色を白から濃い色に変更（背景が白になるため） */
    padding: 10px;  /* aタグを広げるため親のパディングを0に */
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.recruit-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 10px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    
    background: #fff;
    position: relative; /* 折れ目の基準点 */
    
    /* 1. 右上の角を切り落とす */
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    
    /* clip-pathを使うと外側のbox-shadowが消えるため、
       代わりにfilterを使って影をつけます */
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
}

/* （オプション）さらに「折れ返しの裏地」を表現したい場合 */
.recruit-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px; /* 切り落としたサイズと同じにする */
    height: 20px;
    
    /* 折れ目の裏側の色（少し暗くして段差を見せる） */
    background: #e0e0e0;
    
    /* ? の形に切り抜く */
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    
    /* 境目に少し影をつけて ｜＿ を強調する */
    box-shadow: -2px 2px 4px rgba(0,0,0,0.1);
}

.recruit-card .card-top {
	display: block;
}

.recruit-card img {
	width: 100%;
	max-width: 250px;
}

/* 各カードの色 */
.recruit-card.blue { background: #00529a; }
.recruit-card.orange { background: #f39c12; }
.recruit-card.green { background: #27ae60; }
.recruit-card.lightblue { background: #5dade2; }
.recruit-card.purple { background: #8e44ad; }
.recruit-card.red { background: #c0392b; }

/* タイトル・アイコン */
.recruit-card h3 {
	background:#ffd395;
	height:3em;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0;
	font-size:1.1rem;
	border-radius:5px;
}
.recruit-card h4 {
	font-size:1.1rem;
	margin-top: 20px;
}
.recruit-card .icon { height: 80px; display: flex; align-items: center; justify-content: center; margin: 10px 0; }
.recruit-card .icon img { width: auto; max-height: 100%; max-width: 150px; }

/* 下段ボタン(p) */
.recruit-card p.btn-details {
    background: #d7d7d7;
    color: #333;
    padding: 10px;
    border-radius: 20px;
    font-size: 1rem;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0;
}
.recruit-card p a { text-decoration: none; color: inherit; font-weight: bold; width: 100%; }

.recruit-outline {
	margin: 20px 0;
}

/* --- 共通設定 --- */
.company-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

/* --- 1. 会社概要テーブル --- */
.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th, 
.profile-table td {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}

.profile-table th {
  width: 30%;
  font-weight: bold;
  color: #333;
}

.profile-table td {
  width: 70%;
  color: #555;
  line-height: 1.6;
}

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

.tel-link {
  color: inherit;
  text-decoration: none;
}

/* --- 2. 事業・拠点紹介（グリッドカード） --- */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.unit-card {
  padding: 20px;
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  border-left: 4px solid #333;
}

.unit-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.unit-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.unit-link {
  display: inline-block;
  font-size: 13px;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

/* --- 3. アクセスマップ --- */
.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 */
  margin-bottom: 20px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.access-info {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* --- レスポンシブ（スマホ表示） --- */
@media (max-width: 768px) {
.company-section {
  padding: 20px 20px;
}
  .profile-table th, 
  .profile-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .profile-table th {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* カードを1列にする */
  .unit-grid {
    grid-template-columns: 1fr;
  }
}

/* サイトマップ */
/* --- 全ページ共通：コンテンツ幅 --- */
.page-container {
  max-width: 1100px; /* 企業情報ページと合わせるのがおすすめ */
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* --- サイトマップ：縦並びリスト --- */
.sitemap-list-wrapper {
  margin-top: 20px;
}

/* 各カテゴリーのブロック（縦の間隔を広めに） */
.sitemap-column {
  margin-bottom: 40px; 
  border-bottom: 1px solid #f0f0f0; /* 区切り線を入れて見やすく */
  padding-bottom: 20px;
}

/* 最後のブロックは線なし */
.sitemap-column:last-child {
  border-bottom: none;
}

/* カテゴリー見出し（h2） */
.sitemap-heading {
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #333;
  padding-left: 12px;
  margin-bottom: 20px;
  color: #333;
}

/* リスト設定 */
.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 15px; /* リスト間の余白を少し広めに */
}

/* 項目点（矢印） */
.sitemap-column li::before {
  content: ">";
  position: absolute;
  left: 18px;
  top: 0;
  color: #999;
  font-weight: bold;
  font-size: 14px;
}

/* リンク */
.sitemap-column li a {
  color: #0066cc;
  text-decoration: none;
  font-size: 16px; /* 縦並びなので少し大きくしても読みやすい */
  transition: 0.2s;
}

.sitemap-column li a:hover {
  color: #333;
  text-decoration: underline;
}

/* 外部リンクの注釈テキスト */
.external-note {
  font-size: 12px;
  color: #888;
  margin-left: 5px;
  text-decoration: none !important; /* 下線を引かない */
}

/* 外部リンクアイコン（CSSで簡易的に作成） */
.external-link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ホバー時の挙動 */
.external-link:hover .external-note {
  color: #333;
}

/* プライバシーポリシー */
/* プライバシーポリシー独自のスタイル */
.policy-content {
  line-height: 1.8;
  color: #333;
}

.policy-intro {
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 40px;
}

/* 小見出し */
.policy-subheading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

/* 箇条書き */
.policy-section ul {
margin-top:20px;
  padding-left: 1em;
  margin-bottom: 20px;
}

.policy-section li {
  position: relative;
  padding-left: 20px;;
  margin-bottom: 15px; /* リスト間の余白を少し広めに */
  margin-bottom: 10px;
}

/* 項目点（矢印） */
.policy-section li::before {
  content: "・";
  position: absolute;
  left: 1px;
  top: 0;
  color: #999;
  font-weight: bold;
  font-size: 14px;
}

/* お問い合わせ窓口のボックス */
.contact-box {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #e0e0e0;
  margin-top: 10px;
}

.contact-box p {
  margin-bottom: 5px;
}

/* 制定日のスタイル */
.policy-date {
  text-align: right;
  margin-top: 60px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 
20px;
}

/* 営業メールお断りの文言 */
.anti-spam {
    margin-top: 10px;
    font-size: 0.85em;
    color: #c00; /* 警告色として赤系を少し混ぜ、注意を促します */
    font-weight: bold;
    line-height: 1.5;
}

/* お問い合わせボックスの微調整 */
.contact-box {
    background-color: #f9f9f9;
    padding: 25px;
    border: 1px solid #e0e0e0;
    margin-top: 15px;
    border-radius: 4px; /* 少し角を丸くして現代風に */
}
