/* 技術詳細説明本文で ## (h2) を太字に */
.technology-details h2 {
	font-weight: bold !important;
}

/* タイトル: icon, titleのパターン */
.title-icon-and-title-container {
	color: white;
	background: black;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	grid-template-columns: 100px 1fr;
}

/* タイトル: titleのみのパターン */
.title-title-only-container {
	color: white;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	grid-template-columns: 1fr;
}

.title-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 10px 10px 10px;
}

.title-title {
	font-size: 32pt;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
}

.title-subtitle {
	font-size: 12pt;
	background: #f2f2f2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 10px 10px 10px;
}

/* "画像x3" の部分 */
.three-images p {
	display: grid;
	grid-template-columns:
		repeat(
			auto-fit,
			minmax(250px, 1fr)
		);
	column-gap: 10px;
	row-gap: 10px;
	margin: 1em 0;
}

/* "画像x1 + 説明" の部分 */
.one-image-and-text {
	display: grid;
	grid-template-columns: 4fr 6fr;
	margin: 1em 0;
}

@media all and (max-width: 768px) {
  .one-image-and-text {
	grid-template-columns: 1fr;
  }
}

/* "画像x1 + 説明" の表の部分 */
.one-image-and-text-table {
	width: 100%;
	height: 100%;
	font-size: 14pt;
	color: black;
	background-color: #f2f2f2;
	padding: 20px 20px 20px 20px;
}

.one-image-and-text-table td {
	vertical-align: middle;
	font-weight: bold;
}

/* "画像x1 + 説明" のテキストの部分 */
.one-image-and-text-text {
	width: 100%;
	height: 100%;
	font-size: 14pt;
	color: black;
	background-color: #f2f2f2;
	padding: 20px 20px 20px 20px;
	display: flex;
	align-items: center;
	font-weight: bold;
}

/* ～がもたらす価値の表のタイトル */
.value-table-title {
	color: white;
	background-color: black;
}

.value-table-title h2 {
	margin-bottom: 0;
	padding: 20px 20px 20px 20px;
}

/* ～がもたらす価値の表の中身 */
.value-table-ol {
	margin: 0 !important;
	padding: 0 !important;
}

.value-table {
	width: 100%;
	table-layout: fixed;
	margin-top: 0;
	padding: 30px 0px 30px 0px;
	background-color: #f2f2f2;
}
.value-table th {
	font-size: 24pt;
	text-align: left;
	color: white;
	background-color: black;
	padding: 10px 20px 10px 20px;
}

.value-table td {
	color: black;
	padding: 10px 20px 10px 20px;
	font-weight: bold;
}

.value-table td ul {
	list-style-type: disc;
	margin: 0px;
}

.value-table td:nth-of-type(1) {
	font-size: 18pt;
	width: 50%; 
	padding: 10px 20px 10px 10%;
}

.value-table td:nth-of-type(2) {
	font-size: 12pt;
	padding: 10px 10% 10px 20px;
}

/* ～がもたらす価値の表の下の部分 */
.value-table-footer {
	font-weight: bold;
	padding: 20px 5% 20px 5%;
}

/* デモアプリボタン、WebAPIボタンの領域 */
.app-api-area {
	display: grid;
	grid-template-columns:
		repeat(
			auto-fit,
			minmax(250px, 1fr)
		);
	column-gap: 10px;
	row-gap: 10px;
	margin: 1em 0;
	padding: 0px 100px 0px 100px;
	line-height: 1.2;
}

/* デモアプリボタン */
.demo-app-button {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: #ffd966;
	color: black !important;
	font-size: 20pt;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	margin: 10px 0;
	&:is(:focus, :hover) {
		background: #edcf5b;
	}
}

/* Web APIボタン */
.web-api-button {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: #92d050;
	color: black !important;
	font-size: 20pt;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	margin: 10px 0;
	&:is(:focus, :hover) {
		background: #a2e060;
	}
}

/* お問合せボタン */
.inquiry-button {
	border-radius: 10px;
	display: flex;
	font-weight: 700;
	background: #4472c4;
	color: white !important;
	cursor: pointer;
	border: px2rem(2px) solid currentcolor;
	border-radius: px2rem(2px);
	width: 160px;
	height: 50px;
	justify-content: center;
	align-items: center;
	text-align: center;
	&:is(:focus, :hover) {
		background: #5482d4;
	}
}

/* 技術概要の領域 */

.technology-summary-area h3 {
	background-color: #f2f2f2;
	padding: 5px 10px 5px 10px;
	font-weight: bold;
}

.technology-summary-area ul {
	list-style: disc;
	font-weight: bold;
}

.technology-summary-area ul ul {
	list-style: circle;
	font-weight: normal;
}

