:root {
	--amdt-a-navy: #071f3a;
	--amdt-a-navy-2: #0c3159;
	--amdt-a-blue: #075ca8;
	--amdt-a-blue-dark: #054a87;
	--amdt-a-sky: #dceefb;
	--amdt-a-tint: #f2f7fb;
	--amdt-a-line: #cbd9e5;
	--amdt-a-text: #172b3d;
	--amdt-a-muted: #52687a;
	--amdt-a-white: #ffffff;
	--amdt-a-focus: #ffb000;
	--amdt-a-shadow: 0 16px 44px rgba(7, 31, 58, 0.11);
}

html {
	scroll-behavior: smooth;
}

body.amdt-production-theme {
	margin: 0;
	background: var(--amdt-a-white);
	color: var(--amdt-a-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.amdt-production-theme *,
.amdt-production-theme *::before,
.amdt-production-theme *::after {
	box-sizing: border-box;
}

.amdt-production-theme img {
	max-width: 100%;
	height: auto;
}

.amdt-production-theme a {
	color: var(--amdt-a-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.amdt-production-theme a:hover {
	color: var(--amdt-a-blue-dark);
}

.amdt-production-theme a:focus-visible,
.amdt-production-theme button:focus-visible,
.amdt-production-theme input:focus-visible,
.amdt-production-theme select:focus-visible,
.amdt-production-theme textarea:focus-visible {
	outline: 3px solid var(--amdt-a-focus);
	outline-offset: 3px;
}

.amdt-a-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	transform: translateY(-160%);
	background: var(--amdt-a-white);
	color: var(--amdt-a-navy);
	padding: 10px 16px;
	font-weight: 700;
	border: 2px solid var(--amdt-a-navy);
}

.amdt-a-skip-link:focus {
	transform: translateY(0);
}

.amdt-a-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--amdt-a-line);
	box-shadow: 0 3px 18px rgba(7, 31, 58, 0.06);
}

.admin-bar .amdt-a-site-header {
	top: 32px;
}

.amdt-a-site-header__inner {
	width: min(100% - 40px, 1280px);
	min-height: 78px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.amdt-a-site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 230px;
	color: var(--amdt-a-navy);
	text-decoration: none;
}

.amdt-a-site-logo {
	display: block;
	width: auto;
	max-width: 300px;
	max-height: 54px;
}

.amdt-a-site-brand__mark {
	display: inline-grid;
	place-items: center;
	min-width: 74px;
	min-height: 44px;
	padding: 4px 10px;
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.amdt-a-site-brand__name {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.amdt-a-site-nav {
	margin-left: auto;
}

.amdt-a-site-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.amdt-a-site-menu li {
	margin: 0;
	padding: 0;
}

.amdt-a-site-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 8px 13px;
	color: var(--amdt-a-navy);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.amdt-a-site-menu a:hover {
	background: var(--amdt-a-tint);
	color: var(--amdt-a-blue);
}

.amdt-a-site-menu li:last-child a {
	margin-left: 8px;
	padding-inline: 20px;
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white);
}

.amdt-a-site-menu li:last-child a:hover {
	background: var(--amdt-a-blue-dark);
}

.amdt-a-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 92px;
	min-height: 46px;
	padding: 8px 13px;
	border: 1px solid var(--amdt-a-navy);
	background: var(--amdt-a-white);
	color: var(--amdt-a-navy);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.amdt-a-menu-toggle i,
.amdt-a-menu-toggle i::before,
.amdt-a-menu-toggle i::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
}

.amdt-a-menu-toggle i {
	position: relative;
}

.amdt-a-menu-toggle i::before {
	position: absolute;
	top: -6px;
}

.amdt-a-menu-toggle i::after {
	position: absolute;
	top: 6px;
}

.amdt-a-site-main {
	display: block;
	width: 100%;
	min-height: 60vh;
	margin: 0;
	padding: 0;
}

.amdt-a-page,
.amdt-a-page-content,
.amdt-a {
	width: 100%;
	margin: 0;
	padding: 0;
}

.amdt-a-shell {
	width: min(100% - 48px, 1180px);
	margin-inline: auto;
}

.amdt-a h1,
.amdt-a h2,
.amdt-a h3 {
	margin-top: 0;
	color: var(--amdt-a-navy);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.amdt-a h1 {
	max-width: 850px;
	margin-bottom: 24px;
	font-size: clamp(34px, 4.3vw, 60px);
	letter-spacing: 0.025em;
}

.amdt-a h2 {
	margin-bottom: 22px;
	font-size: clamp(28px, 3.2vw, 42px);
}

.amdt-a h3 {
	margin-bottom: 12px;
	font-size: clamp(20px, 2vw, 24px);
}

.amdt-a p {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.amdt-a-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--amdt-a-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.amdt-a-eyebrow::before {
	width: 36px;
	height: 3px;
	background: currentColor;
	content: "";
}

.amdt-a-lead {
	max-width: 780px;
	margin-bottom: 30px;
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.9;
}

.amdt-a-hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 42px;
	background: linear-gradient(135deg, var(--amdt-a-navy) 0%, #0a3159 68%, #0b4b7e 100%);
	color: var(--amdt-a-white);
}

.amdt-a-hero::after {
	position: absolute;
	right: -180px;
	top: -260px;
	width: 620px;
	height: 620px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.025);
	content: "";
}

.amdt-a-hero .amdt-a-shell {
	position: relative;
	z-index: 1;
}

.amdt-a-hero h1,
.amdt-a-hero h2,
.amdt-a-hero h3,
.amdt-a-hero .amdt-a-eyebrow {
	color: var(--amdt-a-white);
}

.amdt-a-hero .amdt-a-eyebrow::before {
	background: #5bc1ff;
}

.amdt-a-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	align-items: center;
	gap: clamp(36px, 6vw, 80px);
}

.amdt-a-hero__layout > * {
	min-width: 0;
}

.amdt-a-hero__visual {
	margin: 0;
	padding: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.amdt-a-hero__visual img {
	display: block;
	width: 100%;
	max-height: 390px;
	object-fit: contain;
}

.amdt-a-hero__visual figcaption {
	margin-top: 12px;
	color: var(--amdt-a-muted);
	font-size: 13px;
	line-height: 1.65;
}

.amdt-a-hero--compact {
	padding-block: 70px;
}

.amdt-a-hero--compact h1 {
	max-width: 960px;
	font-size: clamp(34px, 4vw, 52px);
}

.amdt-a-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

.amdt-a-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	border: 2px solid var(--amdt-a-blue);
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white) !important;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.amdt-a-button:hover {
	border-color: var(--amdt-a-blue-dark);
	background: var(--amdt-a-blue-dark);
	transform: translateY(-2px);
}

.amdt-a-hero .amdt-a-button {
	border-color: var(--amdt-a-white);
	background: var(--amdt-a-white);
	color: var(--amdt-a-navy) !important;
}

.amdt-a-button--secondary,
.amdt-a-hero .amdt-a-button--secondary {
	border-color: currentColor;
	background: transparent;
	color: inherit !important;
}

.amdt-a-hero .amdt-a-button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}

.amdt-a-button--light {
	border-color: var(--amdt-a-white);
	background: var(--amdt-a-white);
	color: var(--amdt-a-navy) !important;
}

.amdt-a-metrics {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 62px 0 -92px;
	padding: 0;
	background: var(--amdt-a-white);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-metrics > div {
	min-width: 0;
	padding: 24px 26px;
	border-right: 1px solid var(--amdt-a-line);
}

.amdt-a-metrics > div:last-child {
	border-right: 0;
}

.amdt-a-metrics dt {
	color: var(--amdt-a-blue);
	font-size: clamp(18px, 1.8vw, 25px);
	font-weight: 800;
	line-height: 1.35;
	white-space: nowrap;
}

.amdt-a-metrics dd {
	margin: 7px 0 0;
	color: var(--amdt-a-muted);
	font-size: 14px;
	line-height: 1.55;
}

.amdt-a-section--videos {
	background: var(--amdt-a-tint);
}

.amdt-a-video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin-top: 40px;
}

.amdt-a-video-card {
	min-width: 0;
	overflow: hidden;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-video-card--featured {
	grid-column: 1 / -1;
}

.amdt-a-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--amdt-a-navy);
}

.amdt-a-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.amdt-a-video-frame iframe:focus-visible {
	outline: 3px solid var(--amdt-a-focus);
	outline-offset: -3px;
}

.amdt-a-video-card__body {
	padding: 24px 26px 26px;
}

.amdt-a-video-card--featured .amdt-a-video-card__body {
	padding: 28px 32px 30px;
}

.amdt-a-video-card h3 {
	margin: 0;
	color: var(--amdt-a-navy);
	font-size: clamp(19px, 2vw, 24px);
}

.amdt-a-video-card p {
	margin: 14px 0 0;
	color: var(--amdt-a-muted);
}

.amdt-a-video-card .amdt-a-text-link {
	margin-top: 18px;
}

.amdt-a-section {
	padding: 96px 0;
}

.amdt-a-hero + .amdt-a-section {
	padding-top: 132px;
}

.amdt-a-section--tint {
	background: var(--amdt-a-tint);
}

.amdt-a-section--navy {
	background: var(--amdt-a-navy);
	color: #e8f2fa;
}

.amdt-a-section--navy h2,
.amdt-a-section--navy h3,
.amdt-a-section--navy .amdt-a-eyebrow {
	color: var(--amdt-a-white);
}

.amdt-a-section-heading {
	max-width: 880px;
	margin-bottom: 40px;
}

.amdt-a-grid {
	display: grid;
	gap: 24px;
}

.amdt-a-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amdt-a-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amdt-a-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amdt-a-card {
	min-width: 0;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: 0 8px 28px rgba(7, 31, 58, 0.06);
}

.amdt-a-card--plain {
	display: flex;
	flex-direction: column;
	padding: 28px;
}

.amdt-a-card--plain .amdt-a-text-link {
	margin-top: auto;
}

.amdt-a-home-reasons {
	background: linear-gradient(180deg, #eef6fc 0%, #f8fbfd 100%);
}

.amdt-a-reason-card {
	position: relative;
	border-top: 4px solid var(--amdt-a-blue);
}

.amdt-a-reason-card::before {
	display: block;
	width: 34px;
	height: 3px;
	margin-bottom: 18px;
	background: #66b8ec;
	content: "";
}

.amdt-a-reason-card h3 {
	font-size: clamp(20px, 1.9vw, 25px);
}

.amdt-a-card__image {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 210px;
	padding: 16px;
	background: #eef4f8;
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-card__image img {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 210px;
	object-fit: contain;
}

.amdt-a-card__body {
	padding: 26px;
}

.amdt-a-card__meta {
	margin-bottom: 8px !important;
	color: var(--amdt-a-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.amdt-a-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	font-weight: 800;
}

.amdt-a-text-link span {
	transition: transform 160ms ease;
}

.amdt-a-text-link:hover span {
	transform: translateX(4px);
}

.amdt-a-section-action {
	margin: 30px 0 0 !important;
	text-align: right;
}

.amdt-a-news-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--amdt-a-line);
	list-style: none;
}

.amdt-a-news-list li {
	display: grid;
	grid-template-columns: 10rem minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	min-height: 68px;
	padding: 14px 4px;
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-news-list time {
	color: var(--amdt-a-muted);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}

.amdt-a-news-list a {
	color: var(--amdt-a-navy);
	font-weight: 700;
	text-decoration-color: rgba(0, 91, 172, 0.36);
	text-underline-offset: 4px;
}

.amdt-a-news-list a:hover {
	color: var(--amdt-a-blue);
}

.amdt-a-news-empty {
	margin: 0;
	padding: 20px 4px;
	border-block: 1px solid var(--amdt-a-line);
}

.amdt-a-news-hero h1 {
	max-width: 1040px;
}

.amdt-a-news-published {
	margin: 0 !important;
	color: #dceefb;
	font-size: 15px;
	font-variant-numeric: tabular-nums;
}

.amdt-a-breadcrumbs {
	background: var(--amdt-a-tint);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 14px 0;
	list-style: none;
	color: var(--amdt-a-muted);
	font-size: 14px;
}

.amdt-a-breadcrumbs li {
	min-width: 0;
	overflow-wrap: anywhere;
}

.amdt-a-breadcrumbs li + li::before {
	margin-right: 8px;
	color: var(--amdt-a-muted);
	content: ">";
}

.amdt-a-news-archive-list {
	border-top: 1px solid var(--amdt-a-line);
}

.amdt-a-news-archive-item {
	display: grid;
	grid-template-columns: 10rem minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	min-height: 82px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--amdt-a-line);
	background: var(--amdt-a-white);
}

.amdt-a-news-archive-item:nth-child(even) {
	background: var(--amdt-a-tint);
}

.amdt-a-news-archive-item time {
	color: var(--amdt-a-muted);
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}

.amdt-a-news-archive-item h2 {
	margin: 0;
	font-size: clamp(18px, 1.7vw, 22px);
}

.amdt-a-news-archive-item h2 a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--amdt-a-navy);
	text-decoration-color: rgba(7, 92, 168, 0.38);
	text-underline-offset: 4px;
}

.amdt-a-news-archive-item h2 a:hover {
	color: var(--amdt-a-blue);
}

.amdt-a-news-pagination {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.amdt-a-news-pagination__next {
	text-align: right;
}

.amdt-a-news-pagination a,
.amdt-a-news-post-navigation a,
.amdt-a-news-content-pages a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--amdt-a-blue);
	background: var(--amdt-a-white);
	color: var(--amdt-a-blue);
	font-weight: 800;
	text-decoration: none;
}

.amdt-a-news-pagination a:hover,
.amdt-a-news-post-navigation a:hover,
.amdt-a-news-content-pages a:hover {
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white);
}

.amdt-a-news-article-shell {
	max-width: 980px;
}

.amdt-a-news-article-content {
	min-width: 0;
	padding: clamp(28px, 5vw, 58px);
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
	overflow-wrap: anywhere;
}

.amdt-a-news-article-content > :first-child {
	margin-top: 0;
}

.amdt-a-news-article-content > :last-child {
	margin-bottom: 0;
}

.amdt-a-news-article-content h2,
.amdt-a-news-article-content h3,
.amdt-a-news-article-content h4 {
	margin-top: 1.8em;
	color: var(--amdt-a-navy);
	line-height: 1.45;
}

.amdt-a-news-article-content h2 {
	padding-bottom: 12px;
	border-bottom: 3px solid var(--amdt-a-blue);
	font-size: clamp(24px, 2.6vw, 32px);
}

.amdt-a-news-article-content h3 {
	padding-left: 14px;
	border-left: 4px solid var(--amdt-a-blue);
	font-size: clamp(20px, 2vw, 25px);
}

.amdt-a-news-article-content img,
.amdt-a-news-article-content iframe,
.amdt-a-news-article-content video {
	max-width: 100%;
	height: auto;
}

.amdt-a-news-article-content table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	-webkit-overflow-scrolling: touch;
}

.amdt-a-news-article-content th,
.amdt-a-news-article-content td {
	padding: 10px 12px;
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-news-post-navigation {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	margin-top: 28px;
}

.amdt-a-news-post-navigation__next {
	text-align: right;
}

.amdt-a-news-post-navigation a {
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	height: 100%;
}

.amdt-a-news-post-navigation__next a {
	align-items: flex-end;
}

.amdt-a-news-post-navigation a span {
	color: var(--amdt-a-muted);
	font-size: 12px;
}

.amdt-a-news-post-navigation a:hover span {
	color: var(--amdt-a-white);
}

.amdt-a-news-post-navigation__index {
	align-self: center;
	white-space: nowrap;
}

.amdt-a-news-content-pages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.amdt-a-flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-flow li {
	position: relative;
	padding: 30px;
	border: 1px solid var(--amdt-a-line);
	background: var(--amdt-a-white);
}

.amdt-a-flow li + li {
	border-left: 0;
}

.amdt-a-flow li > span {
	display: block;
	margin-bottom: 18px;
	color: var(--amdt-a-blue);
	font-size: 36px;
	font-weight: 300;
	line-height: 1;
}

.amdt-a-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	align-items: start;
	gap: clamp(42px, 7vw, 90px);
}

.amdt-a-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-check-list li {
	position: relative;
	min-height: 58px;
	padding: 15px 16px 15px 44px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.amdt-a-check-list li::before {
	position: absolute;
	left: 17px;
	top: 17px;
	color: #68c7ff;
	font-weight: 800;
	content: "✓";
}

.amdt-a-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
}

.amdt-a-feature > * {
	min-width: 0;
}

.amdt-a-feature > div:first-child {
	display: grid;
	place-items: center;
	min-height: 340px;
	padding: 28px;
	background: var(--amdt-a-tint);
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-feature img {
	width: 100%;
	max-height: 360px;
	object-fit: contain;
}

.amdt-a-callout {
	max-width: 920px;
	text-align: left;
}

.amdt-a-notice {
	margin-bottom: 36px;
	padding: 20px 24px;
	border-left: 5px solid var(--amdt-a-blue);
	background: var(--amdt-a-sky);
}

.amdt-a-notice strong {
	display: block;
	margin-bottom: 4px;
	color: var(--amdt-a-navy);
	font-size: 18px;
}

.amdt-a-notice p {
	margin: 0;
}

.amdt-a-notice--strong {
	padding-block: 28px;
}

.amdt-a-table-wrap {
	overflow-x: auto;
	margin-top: 30px;
	-webkit-overflow-scrolling: touch;
}

.amdt-a-comparison {
	width: 100%;
	min-width: 920px;
	border-collapse: collapse;
	background: var(--amdt-a-white);
}

.amdt-a-comparison caption {
	padding: 0 0 14px;
	color: var(--amdt-a-navy);
	font-size: 18px;
	font-weight: 800;
	text-align: left;
}

.amdt-a-comparison th,
.amdt-a-comparison td {
	padding: 15px 16px;
	border: 1px solid var(--amdt-a-line);
	text-align: left;
	vertical-align: middle;
}

.amdt-a-comparison thead th {
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-size: 14px;
}

.amdt-a-comparison tbody th {
	width: 28%;
	background: #f7fafc;
	color: var(--amdt-a-navy);
}

.amdt-a-comparison tbody tr:nth-child(even) td {
	background: #f8fbfd;
}

.amdt-a-comparison a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-weight: 800;
}

.amdt-a-status {
	display: block;
	width: fit-content;
	margin-top: 6px;
	padding: 3px 8px;
	background: #fff1c7;
	color: #6e4c00;
	font-size: 12px;
	font-weight: 800;
}

.amdt-a-product-card {
	display: grid;
	grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
}

.amdt-a-product-card .amdt-a-card__image {
	min-height: 100%;
	border-right: 1px solid var(--amdt-a-line);
	border-bottom: 0;
}

.amdt-a-product-anchor {
	scroll-margin-top: 120px;
}

.amdt-a-product-nav {
	background: var(--amdt-a-white);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-product-nav ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-product-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px 12px;
	border-left: 1px solid var(--amdt-a-line);
	color: var(--amdt-a-navy);
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.amdt-a-product-nav li:last-child a {
	border-right: 1px solid var(--amdt-a-line);
}

.amdt-a-product-nav a:hover,
.amdt-a-product-nav a:focus-visible {
	background: var(--amdt-a-tint);
}

.amdt-a-product-intro,
.amdt-a-product-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
	gap: clamp(30px, 5vw, 62px);
	align-items: center;
	margin-bottom: 54px;
}

.amdt-a-product-intro figure,
.amdt-a-product-feature figure {
	display: grid;
	place-items: center;
	margin: 0;
	padding: 18px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: 0 10px 32px rgba(7, 31, 58, 0.08);
}

.amdt-a-product-intro figure img,
.amdt-a-product-feature figure img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
}

.amdt-a-product-intro--cases {
	margin-top: -12px;
	margin-bottom: 36px;
}

.amdt-a-product-feature {
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	margin-bottom: 0;
}

.amdt-a-check-list--light {
	grid-template-columns: 1fr;
	margin-top: 24px;
}

.amdt-a-check-list--light li {
	min-height: 0;
	background: var(--amdt-a-white);
	border-color: var(--amdt-a-line);
}

.amdt-a-inverter-group + .amdt-a-inverter-group {
	margin-top: 58px;
}

.amdt-a-inverter-group__heading {
	max-width: 880px;
}

.amdt-a-inverter-group__heading h3 {
	margin-bottom: 8px;
	font-size: clamp(23px, 2.5vw, 31px);
}

.amdt-a-inverter-group__heading p {
	margin: 0;
}

.amdt-a-inverter-table {
	width: 100%;
	min-width: 1120px;
	border-collapse: collapse;
	table-layout: fixed;
	background: var(--amdt-a-white);
	font-size: 12.5px;
}

.amdt-a-inverter-table caption {
	padding: 0 0 14px;
	color: var(--amdt-a-navy);
	font-size: 18px;
	font-weight: 800;
	text-align: left;
}

.amdt-a-inverter-table th,
.amdt-a-inverter-table td {
	padding: 13px 10px;
	border: 1px solid var(--amdt-a-line);
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.amdt-a-inverter-table thead th {
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-size: 12px;
}

.amdt-a-inverter-table tbody th {
	background: #f4f8fb;
	color: var(--amdt-a-navy);
}

.amdt-a-inverter-table tbody tr:nth-child(even) td {
	background: #f8fbfd;
}

.amdt-a-inverter-table th:nth-child(1) { width: 15%; }
.amdt-a-inverter-table th:nth-child(2) { width: 8%; }
.amdt-a-inverter-table th:nth-child(3) { width: 8%; }
.amdt-a-inverter-table th:nth-child(4) { width: 10%; }
.amdt-a-inverter-table th:nth-child(5) { width: 12%; }
.amdt-a-inverter-table th:nth-child(6) { width: 12%; }
.amdt-a-inverter-table th:nth-child(7) { width: 14%; }
.amdt-a-inverter-table th:nth-child(8) { width: 14%; }
.amdt-a-inverter-table th:nth-child(9) { width: 7%; }

.amdt-a-inverter-table td[data-label="出力電流"] span {
	display: block;
}

.amdt-a-inverter-table a,
.amdt-a-table-link {
	font-weight: 800;
	text-underline-offset: 3px;
}

.amdt-a-table-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}

.amdt-a-table-note {
	margin: 22px 0 0 !important;
	color: var(--amdt-a-muted);
	font-size: 14px;
}

.amdt-a-product-use-cases .amdt-a-card {
	border-top: 4px solid var(--amdt-a-blue);
}

.amdt-a-use-case--custom {
	background: var(--amdt-a-sky);
	border-color: #9fc8e6;
}

.amdt-a-spec-list {
	margin: 0 0 18px;
	padding-left: 1.3em;
}

.amdt-a-timeline {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-timeline li {
	position: relative;
	padding: 24px 20px;
	background: var(--amdt-a-white);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: 0 7px 20px rgba(7, 31, 58, 0.06);
}

.amdt-a-timeline li > span {
	display: block;
	margin-bottom: 16px;
	color: var(--amdt-a-blue);
	font-size: 28px;
	font-weight: 300;
}

.amdt-a-timeline h3 {
	font-size: 19px;
}

.amdt-a-case-stack {
	display: grid;
	gap: 36px;
}

.amdt-a-case {
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-case dl {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 28px 0 0;
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-case dl > div {
	min-width: 0;
	border-right: 1px solid var(--amdt-a-line);
}

.amdt-a-case dl > div:last-child {
	border-right: 0;
}

.amdt-a-case dt {
	padding: 10px 16px;
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-weight: 800;
}

.amdt-a-case dd {
	margin: 0;
	padding: 18px 16px;
}

[data-amdt-page="cases"] .amdt-a-card__image img {
	width: auto;
	height: auto;
	max-height: 210px;
	object-fit: contain;
}

.amdt-a-case-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.amdt-a-case-photo {
	display: grid;
	grid-template-rows: minmax(280px, 1fr) auto;
	min-width: 0;
	margin: 0;
	background: var(--amdt-a-tint);
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-case-photo__image {
	display: grid;
	place-items: center;
	min-height: 280px;
	padding: 22px;
	background: var(--amdt-a-white);
	overflow: hidden;
}

.amdt-a-case-photo__image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 280px;
	object-fit: contain;
}

.amdt-a-case-photo figcaption {
	padding: 14px 18px;
	border-top: 1px solid var(--amdt-a-line);
	color: var(--amdt-a-navy);
	font-size: 14px;
	font-weight: 700;
}

.amdt-a-contact-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
	align-items: start;
	gap: 48px;
}

.amdt-a-contact-layout--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 900px;
}

.amdt-a-contact-form h2 {
	font-size: 27px;
}

.amdt-a-contact-form {
	min-width: 0;
	padding: clamp(24px, 4vw, 46px);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.amdt-a-field {
	display: block;
	min-width: 0;
	font-weight: 700;
}

.amdt-a-field--full {
	grid-column: 1 / -1;
}

.amdt-a-field small {
	display: block;
	margin: 5px 0 8px;
	color: var(--amdt-a-muted);
	font-weight: 400;
}

.amdt-a-required,
.amdt-a-optional {
	display: inline-block;
	margin-left: 5px;
	padding: 1px 7px;
	font-size: 12px;
	line-height: 1.6;
}

.amdt-a-required {
	background: #a62121;
	color: var(--amdt-a-white);
}

.amdt-a-optional {
	background: #e4ebf0;
	color: var(--amdt-a-muted);
}

.amdt-a-contact-form input[type="text"],
.amdt-a-contact-form input[type="email"],
.amdt-a-contact-form input[type="tel"],
.amdt-a-contact-form select,
.amdt-a-contact-form textarea {
	width: 100%;
	min-height: 48px;
	margin-top: 7px;
	padding: 10px 12px;
	border: 1px solid #8ca2b4;
	border-radius: 0;
	background: var(--amdt-a-white);
	color: var(--amdt-a-text);
	font: inherit;
	font-weight: 400;
}

.amdt-a-contact-form textarea {
	min-height: 190px;
	resize: vertical;
}

.amdt-a-contact-form input[type="submit"] {
	min-height: 52px;
	padding: 12px 30px;
	border: 2px solid var(--amdt-a-blue);
	border-radius: 0;
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.amdt-a-contact-form input[type="submit"]:hover {
	border-color: var(--amdt-a-blue-dark);
	background: var(--amdt-a-blue-dark);
}

.amdt-a-final {
	padding: 78px 0;
	background: linear-gradient(135deg, #075ca8, #073866);
	color: var(--amdt-a-white);
}

.amdt-a-final .amdt-a-shell {
	max-width: 900px;
	text-align: center;
}

.amdt-a-final .amdt-a-eyebrow {
	justify-content: center;
	color: #d6efff;
}

.amdt-a-final h2 {
	color: var(--amdt-a-white);
}

.amdt-a-final p {
	font-size: 18px;
}

.amdt-a-default-title {
	padding: 56px 0;
	background: var(--amdt-a-navy);
}

.amdt-a-default-title h1 {
	margin: 0;
	color: var(--amdt-a-white);
	font-size: clamp(32px, 4vw, 48px);
}

.amdt-a-site-footer {
	background: #041528;
	color: #d7e3ed;
}

.amdt-a-site-footer__inner {
	width: min(100% - 48px, 1180px);
	margin-inline: auto;
	padding: 54px 0 40px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.amdt-a-site-footer__brand strong {
	display: block;
	color: var(--amdt-a-white);
	font-size: 18px;
}

.amdt-a-site-footer__brand p {
	margin: 8px 0 0;
}

.amdt-a-site-footer nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
}

.amdt-a-site-footer a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: #e4f3ff;
}

.amdt-a-site-footer__copy {
	padding: 18px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	text-align: center;
}

.amdt-a[data-amdt-page^="digipower"] {
	--amdt-a-blue: #9c3c00;
	--amdt-a-blue-dark: #722b00;
	--amdt-a-sky: #fff0e6;
	--amdt-a-tint: #fff4eb;
	--amdt-a-line: #e8c7b2;
	--amdt-a-shadow: 0 16px 44px rgba(100, 39, 0, 0.12);
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-hero {
	background: linear-gradient(135deg, #6b2600 0%, #9c3c00 56%, #f06900 100%);
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-hero .amdt-a-eyebrow::before {
	background: #ffd1ad;
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-final {
	background: linear-gradient(135deg, #9c3c00, #6b2600);
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-final .amdt-a-eyebrow {
	color: #ffe1ca;
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-card {
	border-top: 4px solid #f06900;
}

.amdt-a[data-amdt-page^="digipower"] .amdt-a-card__image {
	background: #fffaf6;
}

.amdt-a-digipower-hero .amdt-a-hero__visual {
	border-top: 5px solid #f06900;
}

.amdt-a-digipower-metrics dt {
	color: #9c3c00;
}

.amdt-a-section-lead {
	max-width: 860px;
	margin: -20px 0 36px !important;
	font-size: 17px;
}

.amdt-a-digipower-feature > div:first-child {
	min-height: 280px;
	background: #fffaf6;
	border-color: #e8c7b2;
}

.amdt-a-digipower-feature > div:first-child img {
	height: 100%;
	max-height: 390px;
	object-fit: cover;
}

.amdt-a-digipower-facilities .amdt-a-card {
	display: flex;
	flex-direction: column;
}

.amdt-a-digipower-facilities .amdt-a-card__image {
	min-height: 250px;
	padding: 0;
}

.amdt-a-digipower-facilities .amdt-a-card__image img {
	height: 250px;
	object-fit: cover;
}

.amdt-a-digipower-facilities .amdt-a-card__body {
	flex: 1;
}

.amdt-a-digipower-products .amdt-a-card {
	display: flex;
	flex-direction: column;
}

.amdt-a-digipower-products .amdt-a-card__image {
	min-height: 260px;
}

.amdt-a-digipower-products .amdt-a-card__image img {
	width: auto;
	height: auto;
	max-height: 230px;
}

.amdt-a-digipower-products .amdt-a-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.amdt-a-digipower-products .amdt-a-text-link {
	margin-top: auto;
}

.amdt-a-digipower-company {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 44px;
}

.amdt-a-digipower-company__summary {
	margin: 0;
	border-top: 4px solid #f06900;
}

.amdt-a-digipower-company__summary > div {
	display: grid;
	grid-template-columns: 8rem minmax(0, 1fr);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-digipower-company__summary dt,
.amdt-a-digipower-company__summary dd {
	margin: 0;
	padding: 15px 16px;
}

.amdt-a-digipower-company__summary dt {
	background: var(--amdt-a-tint);
	color: #722b00;
	font-weight: 800;
}

.amdt-a-digipower-history {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--amdt-a-line);
	list-style: none;
}

.amdt-a-digipower-history li {
	display: grid;
	grid-template-columns: 5rem minmax(0, 1fr);
	gap: 18px;
	padding: 13px 4px;
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-digipower-history span {
	color: #9c3c00;
	font-weight: 800;
}

.amdt-a-digipower-history p {
	margin: 0;
}

.amdt-a-digipower-model {
	margin: 0 0 8px !important;
	color: #ffd1ad;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.amdt-a-digipower-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	gap: clamp(42px, 7vw, 90px);
}

.amdt-a-digipower-features {
	padding: 30px;
	border-top: 4px solid #f06900;
	background: var(--amdt-a-tint);
}

.amdt-a-digipower-features h2 {
	font-size: 25px;
}

.amdt-a-digipower-features ul {
	margin: 0;
	padding-left: 1.35em;
}

.amdt-a-digipower-features li + li {
	margin-top: 8px;
}

.amdt-a-digipower-specs {
	width: 100%;
	max-width: 880px;
	border-collapse: collapse;
	background: var(--amdt-a-white);
}

.amdt-a-digipower-specs caption {
	padding-bottom: 14px;
	color: var(--amdt-a-navy);
	font-size: 18px;
	font-weight: 800;
	text-align: left;
}

.amdt-a-digipower-specs th,
.amdt-a-digipower-specs td {
	padding: 15px 18px;
	border: 1px solid var(--amdt-a-line);
	text-align: left;
	vertical-align: top;
}

.amdt-a-digipower-specs th {
	width: 32%;
	background: #fff0e6;
	color: #722b00;
}

.amdt-a-digipower-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.amdt-a-digipower-gallery figure {
	margin: 0;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-digipower-gallery figure > div {
	display: grid;
	place-items: center;
	min-height: 320px;
	padding: 24px;
}

.amdt-a-digipower-gallery img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: contain;
}

.amdt-a-digipower-gallery figcaption {
	padding: 14px 18px;
	border-top: 1px solid var(--amdt-a-line);
	color: #722b00;
	font-weight: 700;
}

.amdt-a-company-profile {
	margin: 0;
	overflow: hidden;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-company-profile > div {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	margin: 0;
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-company-profile > div:last-child {
	border-bottom: 0;
}

.amdt-a-company-profile dt,
.amdt-a-company-profile dd {
	margin: 0;
	padding: 20px 24px;
}

.amdt-a-company-profile dt {
	display: flex;
	align-items: center;
	background: var(--amdt-a-tint);
	color: var(--amdt-a-navy);
	font-weight: 800;
}

.amdt-a-company-profile dd {
	color: var(--amdt-a-text);
}

.amdt-a-company-profile dd span,
.amdt-a-company-address address span {
	display: block;
}

.amdt-a-company-profile dd span + span,
.amdt-a-company-address address span + span {
	margin-top: 3px;
}

.amdt-a-company-access {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.amdt-a-company-address,
.amdt-a-company-route {
	min-width: 0;
	padding: 28px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: 0 12px 32px rgba(7, 31, 58, 0.08);
}

.amdt-a-company-address h3,
.amdt-a-company-route h3 {
	margin-bottom: 18px;
	font-size: 21px;
}

.amdt-a-company-address address {
	margin-bottom: 20px;
	color: var(--amdt-a-text);
	font-style: normal;
}

.amdt-a-company-route dl,
.amdt-a-company-route dt,
.amdt-a-company-route dd {
	margin: 0;
}

.amdt-a-company-route dl > div {
	padding: 15px 0;
	border-top: 1px solid var(--amdt-a-line);
}

.amdt-a-company-route dl > div:first-child {
	padding-top: 0;
	border-top: 0;
}

.amdt-a-company-route dt {
	color: var(--amdt-a-navy);
	font-weight: 800;
}

.amdt-a-company-route dd {
	margin-top: 3px;
	color: var(--amdt-a-muted);
}

.amdt-a-company-map {
	margin-top: 28px;
	padding: 8px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-company-map iframe {
	display: block;
	width: 100%;
	height: 440px;
	border: 0;
}

.amdt-a-company-nav {
	background: var(--amdt-a-white);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-company-nav ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-company-nav li {
	min-width: 0;
}

.amdt-a-company-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px 14px;
	border-left: 1px solid var(--amdt-a-line);
	color: var(--amdt-a-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.amdt-a-company-nav li:last-child a {
	border-right: 1px solid var(--amdt-a-line);
}

.amdt-a-company-nav a:hover,
.amdt-a-company-nav a:focus-visible,
.amdt-a-company-nav a[aria-current="page"] {
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white);
}

.amdt-a-company-guides .amdt-a-card {
	height: 100%;
}

.amdt-a-company-greeting {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.amdt-a-company-greeting p {
	margin-top: 18px;
}

.amdt-a-company-greeting figure {
	display: grid;
	place-items: center;
	margin: 0;
	padding: 24px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-company-greeting img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.amdt-a-company-principle,
.amdt-a-company-policy-grid > article {
	padding: clamp(26px, 4vw, 42px);
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-company-principle {
	margin-bottom: 24px;
}

.amdt-a-company-principle > p {
	margin: 0;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	line-height: 1.9;
}

.amdt-a-company-policy-grid > article h2 {
	margin-bottom: 18px;
	font-size: clamp(22px, 2.6vw, 30px);
}

.amdt-a-company-policy-grid ol {
	margin: 0;
	padding-left: 1.5em;
}

.amdt-a-company-policy-grid li + li {
	margin-top: 14px;
}

.amdt-a-company-action-statement {
	margin: 0 0 24px;
	padding: 20px 24px;
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-size: clamp(19px, 2.4vw, 26px);
	font-weight: 800;
	text-align: center;
}

.amdt-a-company-action-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
}

.amdt-a-company-action-list > div {
	min-width: 0;
	padding: 22px 18px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: 0 8px 24px rgba(7, 31, 58, 0.06);
}

.amdt-a-company-action-list dt,
.amdt-a-company-action-list dd {
	margin: 0;
}

.amdt-a-company-action-list dt {
	margin-bottom: 10px;
	color: var(--amdt-a-blue);
	font-size: 18px;
	font-weight: 900;
}

.amdt-a-company-history {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-company-history::before {
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 64px;
	width: 2px;
	background: var(--amdt-a-line);
	content: "";
}

.amdt-a-company-history > li {
	position: relative;
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	padding-bottom: 26px;
}

.amdt-a-company-history > li:last-child {
	padding-bottom: 0;
}

.amdt-a-company-history time {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	background: var(--amdt-a-blue);
	color: var(--amdt-a-white);
	font-size: 20px;
	font-weight: 900;
	box-shadow: 0 8px 20px rgba(13, 83, 142, 0.18);
}

.amdt-a-company-history__content {
	min-width: 0;
	min-height: 72px;
	padding: 24px 28px;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	box-shadow: 0 10px 28px rgba(7, 31, 58, 0.07);
}

.amdt-a-company-history__content p {
	margin: 0;
}

.amdt-a-company-history__content p + p {
	margin-top: 8px;
}

.amdt-a-company-history__content figure {
	float: right;
	display: grid;
	place-items: center;
	min-width: 150px;
	min-height: 112px;
	margin: 0 0 14px 24px;
	padding: 8px;
	background: var(--amdt-a-tint);
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-company-history__content img {
	display: block;
	width: auto;
	max-width: 208px;
	height: auto;
	max-height: 120px;
	object-fit: contain;
}

.amdt-a-company-staff {
	display: grid;
	gap: 28px;
}

.amdt-a-company-member {
	overflow: hidden;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: var(--amdt-a-shadow);
}

.amdt-a-company-member > header {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 30px;
	align-items: center;
	padding: 30px;
	background: var(--amdt-a-tint);
}

.amdt-a-company-member figure {
	margin: 0;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
}

.amdt-a-company-member img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}

.amdt-a-company-member h2 {
	margin: 0;
	font-size: clamp(26px, 3vw, 36px);
}

.amdt-a-company-member__english,
.amdt-a-company-member__title {
	margin: 8px 0 0;
}

.amdt-a-company-member__english {
	color: var(--amdt-a-muted);
	font-weight: 700;
}

.amdt-a-company-member__title {
	color: var(--amdt-a-navy);
	font-weight: 800;
}

.amdt-a-company-member__comment {
	padding: 24px 30px;
	border-top: 1px solid var(--amdt-a-line);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-company-member__comment h3,
.amdt-a-company-member__comment p {
	margin: 0;
}

.amdt-a-company-member__comment h3 {
	margin-bottom: 8px;
	color: var(--amdt-a-blue);
	font-size: 17px;
}

.amdt-a-company-member__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding: 30px;
}

.amdt-a-company-member__details > section {
	min-width: 0;
}

.amdt-a-company-member__details h3 {
	margin-bottom: 12px;
	padding-bottom: 9px;
	border-bottom: 2px solid var(--amdt-a-line);
	font-size: 19px;
}

.amdt-a-company-member__details p,
.amdt-a-company-member__details ul {
	margin: 0;
}

.amdt-a-company-member__details p + p,
.amdt-a-company-member__details li + li {
	margin-top: 8px;
}

.amdt-a-company-member__details ul {
	padding-left: 1.25em;
}

.amdt-a-company-member__note {
	margin-top: 10px !important;
	color: var(--amdt-a-muted);
	font-size: 14px;
}

.amdt-a-technology-nav {
	background: var(--amdt-a-white);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-technology-nav ul {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amdt-a-technology-nav li {
	min-width: 0;
}

.amdt-a-technology-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px 12px;
	border-left: 1px solid var(--amdt-a-line);
	color: var(--amdt-a-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.amdt-a-technology-nav li:last-child a {
	border-right: 1px solid var(--amdt-a-line);
}

.amdt-a-technology-nav a:hover {
	background: var(--amdt-a-tint);
}

.amdt-a-technology-nav a[aria-current="page"] {
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
}

.amdt-a-technology-cards .amdt-a-card {
	border-top: 4px solid var(--amdt-a-blue);
}

.amdt-a-technology-legacy {
	max-width: 1180px;
	overflow-wrap: anywhere;
}

.amdt-a-technology-legacy > :first-child {
	margin-top: 0;
}

.amdt-a-technology-legacy h2 {
	margin: 54px 0 22px;
	padding: 12px 18px;
	background: var(--amdt-a-navy);
	border-left: 5px solid var(--amdt-a-blue);
	color: var(--amdt-a-white);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.4;
}

.amdt-a-technology-legacy h3 {
	margin: 40px 0 18px;
	padding: 0 0 10px;
	border-bottom: 2px solid var(--amdt-a-blue);
	color: var(--amdt-a-navy);
	font-size: clamp(20px, 2.4vw, 25px);
	line-height: 1.5;
}

.amdt-a-technology-legacy h4 {
	margin: 30px 0 14px;
	padding-left: 13px;
	border-left: 4px solid var(--amdt-a-blue);
	color: var(--amdt-a-navy);
	font-size: 19px;
	line-height: 1.6;
}

.amdt-a-technology-legacy p,
.amdt-a-technology-legacy ul,
.amdt-a-technology-legacy ol {
	margin-top: 0;
	margin-bottom: 22px;
}

.amdt-a-technology-legacy img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 28px auto;
	padding: 16px;
	background: var(--amdt-a-tint);
	border: 1px solid var(--amdt-a-line);
	object-fit: contain;
}

.amdt-a-technology-legacy .box,
.amdt-a-technology-legacy .s {
	margin: 28px 0;
	padding: clamp(22px, 4vw, 34px);
	background: var(--amdt-a-tint);
	border: 1px solid var(--amdt-a-line);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: 0 8px 24px rgba(7, 31, 58, 0.06);
}

.amdt-a-technology-legacy .s {
	background: #fff9e8;
	border-top-color: var(--amdt-a-focus);
}

.amdt-a-technology-legacy table {
	width: 100% !important;
	margin: 24px 0 42px;
	border-collapse: collapse;
	background: var(--amdt-a-white);
	box-shadow: 0 8px 24px rgba(7, 31, 58, 0.06);
}

.amdt-a-technology-legacy th,
.amdt-a-technology-legacy td {
	padding: 14px 16px;
	border: 1px solid var(--amdt-a-line);
	text-align: left;
	vertical-align: top;
}

.amdt-a-technology-legacy th,
.amdt-a-technology-legacy tr:first-child td {
	background: var(--amdt-a-navy);
	color: var(--amdt-a-white);
	font-weight: 800;
}

.amdt-a-technology-legacy--technology-papers td {
	white-space: pre-line;
}

.amdt-a-technology-sample-group + .amdt-a-technology-sample-group {
	padding-top: 0;
}

.amdt-a-technology-sample-group:nth-of-type(even) {
	background: var(--amdt-a-tint);
}

.amdt-a-technology-samples {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.amdt-a-sample-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: var(--amdt-a-white);
	border: 1px solid var(--amdt-a-line);
	border-top: 4px solid var(--amdt-a-blue);
	box-shadow: 0 10px 28px rgba(7, 31, 58, 0.08);
}

.amdt-a-sample-card__image {
	display: grid;
	min-height: 280px;
	place-items: center;
	padding: 22px;
	background: var(--amdt-a-tint);
	border-bottom: 1px solid var(--amdt-a-line);
}

.amdt-a-sample-card__image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
}

.amdt-a-sample-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px;
}

.amdt-a-sample-card__body h3 {
	margin-bottom: 18px;
	font-size: 19px;
}

.amdt-a-sample-card__body .amdt-a-text-link {
	margin-top: auto;
}

@media (max-width: 1180px) {
	.amdt-a-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-timeline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.amdt-a-site-header__inner {
		min-height: 70px;
	}

	.amdt-a-menu-toggle {
		display: inline-flex;
	}

	.amdt-a-site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		padding: 16px 24px 24px;
		background: var(--amdt-a-white);
		border-bottom: 1px solid var(--amdt-a-line);
		box-shadow: 0 14px 24px rgba(7, 31, 58, 0.12);
	}

	.amdt-a-site-nav.is-open {
		display: block;
	}

	.amdt-a-site-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px;
	}

	.amdt-a-site-menu a,
	.amdt-a-site-menu li:last-child a {
		justify-content: flex-start;
		width: 100%;
		margin: 0;
		padding: 12px 14px;
	}

	.amdt-a-hero__layout {
		grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
		gap: 36px;
	}

	.amdt-a-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-technology-samples {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-case dl {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-case dl > div:nth-child(2) {
		border-right: 0;
	}

	.amdt-a-case dl > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--amdt-a-line);
	}
}

@media (max-width: 782px) {
	.admin-bar .amdt-a-site-header {
		top: 46px;
	}

	.amdt-a-news-post-navigation {
		grid-template-columns: 1fr 1fr;
	}

	.amdt-a-news-post-navigation__index {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.amdt-a-shell,
	.amdt-a-site-footer__inner {
		width: min(100% - 36px, 1180px);
	}

	.amdt-a-hero {
		padding-top: 60px;
	}

	.amdt-a-hero__layout,
	.amdt-a-split,
	.amdt-a-feature,
	.amdt-a-digipower-detail,
	.amdt-a-digipower-company,
	.amdt-a-contact-layout {
		grid-template-columns: 1fr;
	}

	.amdt-a-grid--three {
		grid-template-columns: 1fr;
	}

	.amdt-a-hero__visual {
		max-width: 560px;
	}

	.amdt-a-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 44px;
	}

	.amdt-a-metrics > div:nth-child(2) {
		border-right: 0;
	}

	.amdt-a-metrics > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--amdt-a-line);
	}

	.amdt-a-video-grid {
		grid-template-columns: 1fr;
	}

	.amdt-a-video-card--featured {
		grid-column: auto;
	}

	.amdt-a-section {
		padding-block: 72px;
	}

	.amdt-a-flow {
		grid-template-columns: 1fr;
	}

	.amdt-a-flow li + li {
		border-top: 0;
		border-left: 1px solid var(--amdt-a-line);
	}

	.amdt-a-product-card {
		grid-template-columns: 1fr;
	}

	.amdt-a-product-card .amdt-a-card__image {
		border-right: 0;
		border-bottom: 1px solid var(--amdt-a-line);
	}

	.amdt-a-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-table-wrap {
		overflow: visible;
	}

	.amdt-a-comparison {
		display: block;
		min-width: 0;
		background: transparent;
	}

	.amdt-a-comparison caption,
	.amdt-a-comparison tbody,
	.amdt-a-comparison tr,
	.amdt-a-comparison th,
	.amdt-a-comparison td {
		display: block;
		width: 100%;
	}

	.amdt-a-comparison thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.amdt-a-comparison tr {
		margin-bottom: 18px;
		background: var(--amdt-a-white);
		border: 1px solid var(--amdt-a-line);
	}

	.amdt-a-comparison tbody th,
	.amdt-a-comparison tbody td {
		border: 0;
		border-bottom: 1px solid #e6edf2;
		background: var(--amdt-a-white) !important;
	}

	.amdt-a-comparison tbody th {
		padding: 17px;
		background: var(--amdt-a-navy) !important;
		color: var(--amdt-a-white);
	}

	.amdt-a-comparison tbody td {
		display: grid;
		grid-template-columns: 130px minmax(0, 1fr);
		gap: 12px;
		padding: 11px 16px;
	}

	.amdt-a-comparison tbody td::before {
		color: var(--amdt-a-muted);
		font-size: 13px;
		font-weight: 800;
		content: attr(data-label);
	}

	.amdt-a-contact-layout {
		gap: 28px;
	}

	.amdt-a-company-access {
		grid-template-columns: 1fr;
	}

	.amdt-a-company-nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-block: 8px;
	}

	.amdt-a-company-nav a,
	.amdt-a-company-nav li:last-child a {
		border: 1px solid var(--amdt-a-line);
	}

	.amdt-a-company-greeting {
		grid-template-columns: minmax(0, 1fr) 220px;
		gap: 28px;
	}

	.amdt-a-company-action-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amdt-a-company-member__details {
		grid-template-columns: 1fr;
	}

	.amdt-a-technology-nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-block: 8px;
	}

	.amdt-a-technology-nav a,
	.amdt-a-technology-nav li:last-child a {
		border: 1px solid var(--amdt-a-line);
	}

	.amdt-a-technology-legacy--technology-papers table,
	.amdt-a-technology-legacy--technology-papers tbody,
	.amdt-a-technology-legacy--technology-papers tr,
	.amdt-a-technology-legacy--technology-papers td {
		display: block;
		width: 100% !important;
	}

	.amdt-a-technology-legacy--technology-papers thead,
	.amdt-a-technology-legacy--technology-papers tr:first-child {
		position: absolute;
		width: 1px !important;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.amdt-a-technology-legacy--technology-papers table {
		background: transparent;
		box-shadow: none;
	}

	.amdt-a-technology-legacy--technology-papers tr {
		margin-bottom: 18px;
		padding: 16px;
		background: var(--amdt-a-white);
		border: 1px solid var(--amdt-a-line);
		box-shadow: 0 8px 24px rgba(7, 31, 58, 0.06);
	}

	.amdt-a-technology-legacy--technology-papers td,
	.amdt-a-technology-legacy--technology-papers tr:first-child td {
		padding: 10px 0;
		background: transparent;
		border: 0;
		border-bottom: 1px solid var(--amdt-a-line);
		color: var(--amdt-a-text);
	}

	.amdt-a-technology-legacy--technology-papers td:last-child {
		border-bottom: 0;
	}

	.amdt-a-technology-legacy--technology-papers td::before {
		display: block;
		margin-bottom: 3px;
		color: var(--amdt-a-muted);
		font-size: 12px;
		font-weight: 800;
	}

	.amdt-a-technology-legacy--technology-papers td:nth-child(1)::before {
		content: "タイトル";
	}

	.amdt-a-technology-legacy--technology-papers td:nth-child(2)::before {
		content: "掲載情報";
	}

	.amdt-a-technology-legacy--technology-papers td:nth-child(3)::before {
		content: "著者";
	}
}

@media (max-width: 560px) {
	.amdt-a-news-list li {
		grid-template-columns: 1fr;
		gap: 4px;
		padding-block: 16px;
	}

	.amdt-a-news-archive-item {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 16px 14px;
	}

	.amdt-a-news-archive-item h2 {
		font-size: 18px;
	}

	.amdt-a-news-pagination {
		grid-template-columns: 1fr;
	}

	.amdt-a-news-pagination__next {
		text-align: left;
	}

	.amdt-a-news-pagination a {
		width: 100%;
	}

	.amdt-a-news-article-content {
		padding: 24px 18px;
	}

	.amdt-a-news-post-navigation {
		grid-template-columns: 1fr;
	}

	.amdt-a-news-post-navigation__index,
	.amdt-a-news-post-navigation__previous,
	.amdt-a-news-post-navigation__next {
		grid-column: 1;
	}

	.amdt-a-news-post-navigation__index {
		grid-row: 1;
	}

	.amdt-a-news-post-navigation__previous {
		grid-row: 2;
	}

	.amdt-a-news-post-navigation__next {
		grid-row: 3;
	}

	.amdt-a-news-post-navigation__next a {
		align-items: flex-start;
	}

	body.amdt-production-theme {
		font-size: 15px;
	}

	.amdt-a-site-header__inner {
		width: min(100% - 24px, 1280px);
		min-height: 64px;
	}

	.amdt-a-site-brand {
		min-width: 0;
	}

	.amdt-a-site-logo {
		max-width: 180px;
		max-height: 44px;
	}

	.amdt-a-site-brand__name {
		display: none;
	}

	.amdt-a-menu-toggle {
		min-width: 48px;
		padding-inline: 12px;
	}

	.amdt-a-menu-toggle span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.amdt-a-site-nav {
		padding-inline: 12px;
	}

	.amdt-a-site-menu {
		grid-template-columns: 1fr;
	}

	.amdt-a-shell,
	.amdt-a-site-footer__inner {
		width: min(100% - 28px, 1180px);
	}

	.amdt-a h1 {
		font-size: 34px;
	}

	.amdt-a h2 {
		font-size: 27px;
	}

	.amdt-a-hero {
		padding: 48px 0 34px;
	}

	.amdt-a-hero--compact {
		padding-block: 48px;
	}

	.amdt-a-hero__visual {
		padding: 14px;
	}

	.amdt-a-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.amdt-a-button {
		width: 100%;
	}

	.amdt-a-metrics,
	.amdt-a-grid--two,
	.amdt-a-grid--three,
	.amdt-a-grid--four,
	.amdt-a-timeline,
	.amdt-a-check-list,
	.amdt-a-case-gallery,
	.amdt-a-case dl,
	.amdt-a-digipower-gallery,
	.amdt-a-form-grid {
		grid-template-columns: 1fr;
	}

	.amdt-a-technology-nav ul,
	.amdt-a-technology-samples {
		grid-template-columns: 1fr;
	}

	.amdt-a-technology-legacy img {
		padding: 9px;
	}

	.amdt-a-sample-card__image {
		min-height: 220px;
		padding: 16px;
	}

	.amdt-a-digipower-company__summary > div {
		grid-template-columns: 1fr;
	}

	.amdt-a-company-profile > div {
		grid-template-columns: 1fr;
	}

	.amdt-a-company-profile dt {
		padding: 14px 18px;
	}

	.amdt-a-company-profile dd {
		padding: 16px 18px;
	}

	.amdt-a-company-address,
	.amdt-a-company-route {
		padding: 22px;
	}

	.amdt-a-company-map {
		padding: 5px;
	}

	.amdt-a-company-map iframe {
		height: 320px;
	}

	.amdt-a-company-nav ul,
	.amdt-a-company-action-list {
		grid-template-columns: 1fr;
	}

	.amdt-a-company-greeting {
		grid-template-columns: 1fr;
	}

	.amdt-a-company-greeting figure {
		width: min(100%, 260px);
		margin-inline: auto;
	}

	.amdt-a-company-principle,
	.amdt-a-company-policy-grid > article {
		padding: 22px;
	}

	.amdt-a-company-history::before {
		left: 35px;
	}

	.amdt-a-company-history > li {
		grid-template-columns: 70px minmax(0, 1fr);
		gap: 14px;
	}

	.amdt-a-company-history time {
		font-size: 16px;
	}

	.amdt-a-company-history__content {
		padding: 20px;
	}

	.amdt-a-company-history__content figure {
		float: none;
		width: 100%;
		margin: 0 0 16px;
	}

	.amdt-a-company-member > header {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 18px;
		padding: 22px;
	}

	.amdt-a-company-member__comment,
	.amdt-a-company-member__details {
		padding: 22px;
	}

	.amdt-a-digipower-company__summary dd {
		padding-top: 10px;
	}

	.amdt-a-digipower-history li {
		grid-template-columns: 4rem minmax(0, 1fr);
	}

	.amdt-a-digipower-gallery figure > div {
		min-height: 220px;
		padding: 16px;
	}

	.amdt-a-metrics > div {
		border-right: 0;
		border-bottom: 1px solid var(--amdt-a-line);
		padding: 20px;
	}

	.amdt-a-metrics > div:last-child {
		border-bottom: 0;
	}

	.amdt-a-section {
		padding-block: 58px;
	}

	.amdt-a-hero + .amdt-a-section {
		padding-top: 112px;
	}

	.amdt-a-card--plain,
	.amdt-a-card__body,
	.amdt-a-contact-form {
		padding: 22px;
	}

	.amdt-a-video-card__body,
	.amdt-a-video-card--featured .amdt-a-video-card__body {
		padding: 22px;
	}

	.amdt-a-card__image,
	.amdt-a-card__image img {
		min-height: 170px;
		height: 170px;
	}

	.amdt-a-timeline li {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 12px;
	}

	.amdt-a-case dl > div,
	.amdt-a-case dl > div:nth-child(2),
	.amdt-a-case dl > div:nth-child(-n+2) {
		border-right: 0;
		border-bottom: 1px solid var(--amdt-a-line);
	}

	.amdt-a-case dl > div:last-child {
		border-bottom: 0;
	}

	.amdt-a-case-photo {
		grid-template-rows: minmax(210px, 1fr) auto;
	}

	.amdt-a-case-photo__image {
		min-height: 210px;
		padding: 16px;
	}

	.amdt-a-case-photo__image img {
		max-height: 230px;
	}

	.amdt-a-comparison tbody td {
		grid-template-columns: 105px minmax(0, 1fr);
	}

	.amdt-a-field--full {
		grid-column: auto;
	}

	.amdt-a-final {
		padding-block: 58px;
	}

	.amdt-a-site-footer__inner {
		padding-block: 42px 30px;
		flex-direction: column;
	}

	.amdt-a-site-footer nav {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1180px) {
	.amdt-a-product-intro,
	.amdt-a-product-feature {
		grid-template-columns: 1fr;
	}

	.amdt-a-product-intro figure,
	.amdt-a-product-feature figure {
		max-width: 620px;
	}

	.amdt-a-inverter-table,
	.amdt-a-inverter-table caption,
	.amdt-a-inverter-table tbody,
	.amdt-a-inverter-table tr,
	.amdt-a-inverter-table th,
	.amdt-a-inverter-table td {
		display: block;
		width: 100%;
	}

	.amdt-a-inverter-table th:nth-child(n) {
		width: 100%;
	}

	.amdt-a-inverter-table {
		min-width: 0;
		background: transparent;
		font-size: 14px;
	}

	.amdt-a-inverter-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.amdt-a-inverter-table tr {
		margin-bottom: 20px;
		background: var(--amdt-a-white);
		border: 1px solid var(--amdt-a-line);
		box-shadow: 0 8px 22px rgba(7, 31, 58, 0.06);
	}

	.amdt-a-inverter-table tbody th,
	.amdt-a-inverter-table tbody td {
		border: 0;
		border-bottom: 1px solid #e6edf2;
		background: var(--amdt-a-white) !important;
	}

	.amdt-a-inverter-table tbody th {
		padding: 17px;
		background: var(--amdt-a-navy) !important;
		color: var(--amdt-a-white);
	}

	.amdt-a-inverter-table tbody th a {
		color: var(--amdt-a-white);
	}

	.amdt-a-inverter-table tbody td {
		display: grid;
		grid-template-columns: 170px minmax(0, 1fr);
		gap: 14px;
		padding: 12px 16px;
	}

	.amdt-a-inverter-table tbody td::before {
		color: var(--amdt-a-muted);
		font-size: 13px;
		font-weight: 800;
		content: attr(data-label);
	}

	.amdt-a-inverter-table .amdt-a-status {
		color: #6e4c00;
	}
}

@media (max-width: 782px) {
	.amdt-a-product-nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-block: 8px;
	}

	.amdt-a-product-nav a,
	.amdt-a-product-nav li:last-child a {
		border: 1px solid var(--amdt-a-line);
	}

	.amdt-a-product-intro figure img,
	.amdt-a-product-feature figure img {
		max-height: 360px;
	}
}

@media (max-width: 560px) {
	.amdt-a-product-nav ul {
		grid-template-columns: 1fr;
	}

	.amdt-a-inverter-table tbody td {
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 10px;
		padding-inline: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.amdt-production-theme *,
	.amdt-production-theme *::before,
	.amdt-production-theme *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Digi Power実績カードの見切れ防止 */
.amdt-a-digipower-hero.amdt-a-hero {
	padding-bottom: 92px;
}

.amdt-a-digipower-hero + .amdt-a-section {
	padding-top: 82px;
}

@media (max-width: 640px) {
	.amdt-a-digipower-hero + .amdt-a-section {
		padding-top: 54px;
	}
}
