@charset "utf-8";
/* videoedu.css */

/* 既存のh3スタイルをリセット */
#videoedu h3 {
	font-size: 1.3em;
	color: #34495e;
	border-bottom: none;
	border-left: none;
	padding: 0;
	margin:1.5em 1em 0 2em;
}
.description-subtitle {
	font-size: 1.3em;
	color: #34495e;
	text-align: left;
}

#videoedu .feature {
	margin: 1.5em 1em 0 2.8em;
    padding: 0 0 1em 0;
}

.warning-text {
	background-color: #fdf5e6;
	border-left: 5px solid #ffa07a;
	border-radius: 4px;
	text-align: left;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 20px;
}
/* テーブルコンテナのスタイル */
#table-container {
	margin: 20px;
	max-width: 800px;
	font-size: 0.9em;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
	border: 1px solid #ddd;
	padding: 12px 15px;
	text-align: left;
}

.comparison-table th {
	background-color: #f2f2f2;
	font-weight: bold;
	color: #333;
	vertical-align: middle;
}

/* 左側の項目列のみに背景色と太字を適用 */
.comparison-table td:first-child {
	background-color: #f2f2f2; /* 項目の列の背景色 */
	font-weight: bold; /* 項目名を太字に */
	width: 20%; /* 項目の列幅を調整（任意） */
}

/* その他の行の背景色をデフォルト（白）にするための調整 */
.comparison-table tbody tr {
	background-color: #fff;
}
/* 画像リサイズ*/
img.bizcont {
	max-width: 100%;
	height: auto;
	margin-left:0.5em;
	margin-top:0.5em;
}

/*フローチャート用*/
.stepbar {
  margin: 0 auto;
  width: 80%;
}

.stepbar .stepbarwrap {
	margin: 2em 0;
	position: relative;
}

.stepbar .stepbarwrap .steptitle {
	display: inline-flex;
	align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
	display: inline-block;
	width: 1em;
	height: 1em;
	content: "";
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #EF7F42;
}

.stepbar .stepbarwrap .steptitle .stepnum {
	padding-left: 1em;
	font-size: 0.8em;
	color: #EF7F42;
}

.stepbar .stepbarwrap .steptxt {
  padding-left: 3em;
}

.stepbar .stepbarwrap .steptxt .steptxt-title {
	margin: 0.5em 0;
	font-weight: bold;
	font-size: 1.2em;
}

.stepbar .stepbarwrap .steptxt {
	font-size: 1em;
}

.steptxt-txt{
	font-size: 0.9em;
	margin-left: 0.5em;
}

.stepbar .stepbarwrap .stepline {
	width: 1px;
	height: calc(100% + 1em);
	background-color: #EF7F42;
	position: absolute;
	top: 1em;
	left: 0.5em;
	z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
	display: none;
}

@media screen and (max-width: 960px) {
	.stepbar {
    width: 90%;
	}
}

a.btn_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	transition: 0.5s;
}
a.btn_02:hover {
	color: #27acd9;
	background: #fff;
}
/* 動画タイトルのレイアウト */
.boxitem-container {
	display: flex; /* 横並びレイアウト */
	flex-wrap: wrap; /* 横に入りきらない場合は折り返し */
	gap: 20px; /* 各ボックス間のスペース */
	justify-content: center; /* 中央揃え */
	padding: 20px;
	margin-left:1em;
	margin-right: 1em;
	width: auto;
	box-sizing: border-box;
	background-color: #f0f8ff; /* 薄い水色など、目立たない色 */
    border: 1px solid #cceeff; /* 薄い青色の枠線 */
    border-radius: 8px; /* 角を丸める */
    padding: 20px; /* 内側の余白 */
    margin-bottom: 30px; /* 各カテゴリー間の余白 */
}

/* 各ボックスのスタイル */
.boxitem {
	flex: 1 1 calc(33.33% - 40px); /* 各ボックスが3分の1の幅を占める */
	max-width: 300px; /* ボックスの最大幅 */
	background-color: #f9f9f9;
	padding: 0 10px; /* コンテナ全体の余白を小さく */
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

/* ボックスのタイトル */
.boxitem-title {
	font-size: 0.9em;
	margin-bottom: 15px;
	font-weight: bold;
}

/* 詳細情報リスト */
.boxitem-details {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.8em;
}

.boxitem-details li {
	margin-bottom: 10px;
	word-break: break-all;
}

.boxitem-details strong {
	color: #333;
	font-weight: bold;
}

/*URL改行対応*/
#middle_right p.url{
	word-break: break-all;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .boxitem {
    flex: 1 1 100%; /* モバイルではボックスを縦並びに */
  }
}

/* 説明テキストのスタイル */
#middle_right .boxitem-container > .description { /* .boxitem-container の直下にある .description に適用 */
    text-align: center;
    font-size: 0.8em;
    margin-top: -1em; /* 各boxitemとの間隔を確保 */
    padding-left: 2em; /* .boxitem-container のパディングに合わせる */
    width: 100%; /* 親要素の幅いっぱいに広げる */
}