/* 技術詳細説明本文で ## (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;
	}
}

/* メンテナンスボタン */
.maintenance-button {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: gray;
	color: black !important;
	font-size: 20pt;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	margin: 10px 0;
}

/* お問合せボタン */
.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;
}

/* 有識者コメントセクション */
.expert-voices-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2d5a9e, #4472c4);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    margin: 0.5em 0 0.4em;
    font-size: 14pt;
    font-weight: bold;
}

.expert-voices-header-icon {
    font-size: 24px;
    line-height: 1;
}

.expert-voices-sub {
    font-size: 9.5pt;
    color: #555;
    margin-bottom: 18px;
    padding-left: 2px;
}

.expert-voices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 0 0 1.5em;
}

.expert-card {
    display: flex;
    flex-direction: column;
}

.expert-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px 6px;
}

.expert-card-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #4472c4;
    color: white;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(68,114,196,0.35);
}

.expert-card-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.expert-card-role {
    font-size: 9.5pt;
    font-weight: bold;
    color: #4472c4;
}

.expert-card-stars {
    color: #ffd966;
    font-size: 13pt;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.expert-card-bubble {
    background: #eef3fb;
    border: 2px solid #4472c4;
    border-radius: 0 16px 16px 16px;
    padding: 16px 18px;
    font-size: 10.5pt;
    line-height: 1.75;
    color: #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(68,114,196,0.12);
}

.expert-card-bubble::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    right: 8px;
    font-size: 84px;
    color: rgba(68, 114, 196, 0.09);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

@media all and (max-width: 768px) {
    .expert-voices {
        grid-template-columns: 1fr;
    }
}

