@charset "UTF-8";
/* CSS Document */


/*------------------------------------------------------------
	第二階層用CSS　21.1～　編集中
------------------------------------------------------------*/
.news-contents {
	max-width:1100px;/*コンテンツ幅*/
	margin:0 auto;/*センタリング*/
	margin-bottom: 50px;
}

/*パンくず部分*/
.breadcrumb ol {
    /* デフォルトCSS of 解除 */
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.breadcrumb li {
    /* liはブロックボックスのため */
    display: inline;
}
.breadcrumb li::after {
    /* 各項目の後ろに"»"をつける */
    content: "»";
    color: #999;
}
.breadcrumb li:last-child::after {
    /* 最後の項目には"»"をつけない */
    content: none;
}
.breadcrumb a {
    /* 下線を非表示 */
    text-decoration: none;
    color: #999;
}

.breadcrumb a:hover {
    /* 下線を非表示 */
    text-decoration: none;
    color: #0bd;
}


/*記事部分*/
article {
	width:74%;
	margin:0 auto;/*センタリング*/
}

article img {
	margin-top:10px;
	margin-bottom:10px;
	margin-left:auto;
	margin-right:auto;
}

.post-title {
	font-size:2rem;
	font-weight:normal;
}

.tBox {
	width: 600px;
	margin: 57px auto 65px;
}

.tBox p {
	line-height: 2.57;
}

.newBox {
	width: 660px;
	margin: 32px auto 50px;
	padding: 25px 29px 22px;
	border: 1.5px solid #DFDFEB;
	box-sizing: border-box;
}

.newBox p, .newBox .area-list li {
	line-height: 1.857;
}

.newBox .title {
	margin-bottom: 3px;
	color: #212126;
	font-weight: 500;
}

.data-title {
	font-family:"Yu Mincho","YuMincho",serif;
	font-size:1.2rem;
	font-weight:normal;
	padding: 1rem 2rem;
    border-bottom: 2px dashed #aaaaaa;
}

.grid {
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	gap:10px;
	grid-template-rows:100px;
	margin-top:20px;
}
.data-list a {
	padding-left:80px;
	padding-top:2.6em;
	box-sizing:border-box;
	background-image:url('../img/cordless/dl.png');
	background-size:auto 80px;
	background-position: left 5px top 10px;
	background-color:#fbfbfb;
	background-repeat:no-repeat;
   	display:block;
	margin:auto;
  	font-size:1.0em;
    width: 320px;
	height:100px;
	border: 1px solid;
}

.data-list a:hover {
	background-color:#f0f0f0;
}

/*PDFダウンロードボタン*/
.grid {
	display:grid;
	width:100%;
	grid-template-columns:1fr 1fr;
	grid-template-rows:100px;
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
}

.data-list a {
	padding-left:80px;
	padding-top:2.6em;
	box-sizing:border-box;
	background-image:url('../img/drive/dl.png');
	background-size:auto 80px;
	background-position: left 5px top 10px;
	background-color:#fbfbfb;
	background-repeat:no-repeat;
   	display:block;
	margin:auto;
  	font-size:1.0em;
    width: 320px;
	height:100px;
	border: 1px solid;
}

.data-list a:hover {
	background-color:#f0f0f0;
}

/*サイドバー*/
aside {
	width: 22%;
}

.post-info {
	position:relative;
	padding-top: 4px;
	margin-bottom: 40px;
}

.sub-title {
	font-size:1.1em;
	padding:0 8px 8px;
	border-bottom:2px #aaa solid;
	font-weight:normal;
}

.sub-menu {
	margin-bottom:60px;
	list-style: none;
}

.sub-menu li {
	border-bottom: 1px #ddd solid;
}

.sub-menu a {
	color:#444444;
	padding:10px;
	display:block;
}

.sub-menu a:hover {
	color:#0bd;
}

/* =========================================================
   スマートフォン用レスポンシブ表示（drive.html 固有設定）
   ========================================================= */

@media screen and (max-width: 768px) {
  /* 画像の左右余白をテキストと合わせる */
  article img {
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }

  /* --- drive.html 固有のコンテンツ領域調整 --- */
  #main {
    padding-top: 110px !important; /* 固定ヘッダー（74px）＋余白を確保 */
  }

  /* タイトルグループ全体のデザイン */
  .post-header {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    margin-bottom: 20px !important;
  }
  
  /* パンくずリストの文字サイズ・カラー */
  .breadcrumb, .breadcrumb a {
    font-size: 11px !important;
    color: #333 !important;
  }

  .breadcrumb li::after {
    content: "＞" !important;
    color: #333 !important;
    font-size: 10px !important;
    margin: 0 2px !important;
  }

  .news-contents {
    width: 100% !important;
    margin-bottom: 30px !important;
  }

  article {
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }

  /* タイトルをゴシック太字、黒色、1.6remに調整 */
  .post-title {
    font-size: 1.6rem !important;
    font-weight: bold !important;
    letter-spacing: 0 !important;
    color: #000 !important;
    margin-top: 10px !important;
    margin-bottom: 4px !important;
  }

  /* サブタイトルをゴシック太字、黒色、14pxに調整 */
  .post-cat {
    font-size: 14px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    color: #000 !important;
    margin-bottom: 0 !important;
  }

  /* 本文エリアの調整 */
  .tBox {
    width: 100% !important;
    margin: 35px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
    color: #4e4e54 !important;
  }

  .tBox b {
    font-size: 14px !important;
    line-height: 1.7 !important;
    display: block;
    margin-bottom: 20px !important;
    border-left: 3px solid #3f3f49 !important; /* 左アクセントライン */
    padding: 2px 0 2px 12px !important;
    background-color: transparent !important; /* 背景色なし */
    color: #2b2c31 !important;
    font-weight: bold !important;
    border-radius: 0 !important;
  }

  /* 囲み枠の調整 */
  .newBox {
    width: 100% !important;
    padding: 25px 20px !important;
    margin: 40px auto 30px !important;
    box-sizing: border-box !important;
    background-color: #FFF !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02) !important;
  }

  .newBox .title {
    font-size: 13px !important;
    font-weight: bold !important;
    color: #2b2c31 !important;
    margin-bottom: 15px !important;
    border-left: 3px solid #3f3f49 !important; /* 左アクセントライン */
    padding-left: 8px !important;
    line-height: 1.4 !important;
  }

  .newBox .area-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .newBox .area-list li {
    font-size: 11px !important;
    line-height: 1.6 !important;
    color: #5a5a67 !important;
    padding: 10px 0 10px 15px !important;
    border-bottom: 1px solid #f0f0f5 !important;
    position: relative !important;
  }

  .newBox .area-list li:last-child {
    border-bottom: none !important;
  }

  .newBox .area-list li::before {
    content: "•" !important;
    position: absolute !important;
    left: 2px !important;
    color: #3f3f49 !important;
    font-weight: bold !important;
  }

  /* --- コメントアウト解除後の資料ダウンロードエリアのレスポンシブ化 --- */
  .grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }

  .data-list a {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    height: auto !important;
    padding: 2.6em 15px 1.5em 80px !important;
    background-size: auto 60px !important;
    background-position: left 15px center !important;
  }
}
