@charset "UTF-8";
/* ------------------------------------- */
/* カスタムスタイル */
/* ------------------------------------- */
.column-container {
    max-width:1200px;
}
.column-container p {
	font-size:1.2rem;
	line-height: 1.6;
}
.column-container h2 {
	font-size:1.5rem;
}
.column-img {
    border: 1px solid #ddd; /* 視覚的に分かりやすくするための枠線 */
    width: 100%; /* 画像をコンテナの幅に合わせる */
    max-width: 1280px;
    height: auto; /* 高さは自動調整 */
}
.column-img img {
	object-fit: cover; /* 画像がはみ出さないように調整 */
}
.column-main-date {
	font-weight: bold;
	font-size:1.5rem;
	vertical-align: middle;
}
.column-main-tag {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.0rem;
}
.column-author-icon {
	display: inline-block;
    background-color: #00AEEF;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.column-author {
    font-size: 1.1rem;
    vertical-align: middle;
}
.column-tag-container {
    text-align: right;
    color: gray;
    font-size: 1.2rem;
}
.column-main-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ----- 右側コンテンツ（目次）のスタイル ----- */
.toc-wrapper {
    background-color: #f8f9fa; /* 背景色 */
    padding: 20px;
    border-radius: 5px; /* 角丸 */
    border: 1px solid #e9ecef; /* 薄いボーダー */
}
.toc-wrapper h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #ccc; /* 下線 */
    padding-bottom: 5px;
}
.toc-list {
    list-style: none; /* デフォルトのリストスタイルを削除 */
    padding: 0;
    margin: 0;
    line-height: 1.6; /* 目次の行の高さを調整 */
}
.toc-list li {
    font-size: 0.95rem;
    margin-bottom: 8px; /* 目次項目間のスペース */
}
.toc-list li a {
    color: #333; /* リンク色 */
    text-decoration: none; /* 下線なし */
    display: block; /* クリック領域を広げる */
}
.toc-list li a:hover {
    color: #007bff; /* ホバー時の色 */
    text-decoration: underline; /* ホバー時に下線 */
}
/* 青い丸のリストマーカー */
.toc-list li.main-item {
    position: relative;
    padding-left: 20px; /* マーカー分のスペースを確保 */
    font-weight: bold; /* メイン項目は太字 */
}
.toc-list li.main-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px; /* 垂直方向の位置調整 */
    width: 8px;
    height: 8px;
    background-color: #007bff; /* 青い丸 */
    border-radius: 50%;
}
.toc-list li.sub-item {
    padding-left: 20px; /* サブ項目は少しインデント */
    font-size: 0.85rem; /* サブ項目は少し小さく */
}
.toc-download-button {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%; /* ボタンの幅を親要素に合わせる *//
}

.presentation-card {
    background-color: #fff;
    border: 2px solid #007bff; /* 青い枠線 */
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    margin-top: 70px;
}
.presentation-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.download-button {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%; /* ボタンの幅を親要素に合わせる *//
    margin-top: 20px; /* 上部との間隔 */
}
.download-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}
.presentation-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.presentation-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 画面が小さい場合の調整 */
@media (max-width: 767.98px) {
    .presentation-card {
        padding: 20px;
    }
    .presentation-text h2 {
        font-size: 1.5rem;
    }
    .presentation-text p {
        font-size: 0.9rem;
    }
    .download-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: none; /* 小画面では幅制限をなくす */
    }
}

.presentation-child-card {
    background-color: #C9DFEC;
    border-radius: 15px;
    padding: 10px;
    width: 100%;
    margin-top: 30px;
}

.author-card {
    background-color: #eee;
    border-radius: 15px;
    padding: 20px 30px;
    width: 100%;
}
.author-icon {
	display: inline-block;
    background-color: #00AEEF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.author-text {
    font-size: 1.25rem;
    font-weight: bold;
    vertical-align: middle;
}
.author-card p {
    font-size: 1rem;
    line-height: 1.6;
}
/* ------------------------------------- */
/* コンテンツ表示部分のスタイル */
/* ------------------------------------- */
.industry-container {
    width:85%!important;
}
.industry-main-title {
    font-size:2.0rem;
    font-weight: bold;
}
.industry-main-line {
    font-size:2.0rem;
}
.industry-main-link-container {
    text-align: right;
}
.industry-main-link {
    font-size:1.3rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
}
.industry-main-link:hover {
	text-decoration: underline;
}
.industry-link {
	text-decoration: none;
}
.industry-link:hover {
  	text-decoration: underline;
}
.industry-image-container {
    position: relative;
    display: inline-block;
}
.industry-image-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.0rem;
}
.industry-title {
    font-size:1.3rem;
    font-weight: bold;
    color: black;
	color: black;
	/* 親要素の幅に合わせてテキストを折り返す */
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.industry-tag {
    color: gray;
}

/* Custom CSS for breadcrumb if needed */
.breadcrumb {
  	background-color: transparent; /* 背景色を透明にする（画像に合わせる） */
}
.breadcrumb-item {
	font-size:0.9rem;
}
.breadcrumb-item a {
	color: #007bff; /* リンクの色を青に */
	text-decoration: none; /* 下線をなくす */
}
.breadcrumb i {
	margin-right:5px;
}
.container h1 {
    word-wrap: break-word;   /* 長い単語を強制的に改行 */
    overflow-wrap: break-word; /* word-wrapの新しい標準名 */
}

/* 資料ダウンロードのカスタムスタイル */
.modal-body input::placeholder {
  opacity: 0.5;
  color: #999;
}