/* ==================================================
	reset
================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}





/* ==================================================
	base
================================================== */

body {
	-webkit-text-size-adjust: 100%;
	font-family: "Noto Sans JP", sans-serif;
}
.visid {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	font-size: 16px;
	line-height: 1.375;
}
.visid,
.visid *,
.visid *::before,
.visid *::after {
	box-sizing: border-box;
}
.visid img,
.visid video {
	vertical-align: bottom;
	max-width: 100%;
}
.visid sup,
.visid sub {
	position: relative;
	vertical-align: baseline;
	height: 0;
	font-size: smaller;
	line-height: 1;
}
.visid sup {
	bottom: 1ex;
}
.visid sub {
	top: 1ex;
}



/* ----------------------------------------
	a
---------------------------------------- */

.visid a {
	color: #007dba;
	text-decoration: none;
}
.visid a:hover {
	text-decoration: underline;
}
.visid a:visited {
	color: #822980;
}


/* images -------------------- */

.visid a img {
	transition: .2s;
}
.visid a img:hover {
	opacity: .7;
}





/* ==================================================
	color
================================================== */

:root {
	--key-color: #a89efa;
	--key-color90: #b1a8fa;
	--key-color80: #b9b1fb;
	--key-color70: #c2bbfb;
	--key-color60: #cbc5fc;
	--key-color50: #d3cefc;
	--key-color40: #dcd8fd;
	--key-color30: #e5e2fd;
	--key-color20: #eeecfe;
	--key-color10: #f6f5fe;
	--key-color2: #212248;
	--standard-gray: #e6e6e6;
}

.fc_key { color: var(--key-color) !important; }
.fc_key2 { color: var(--key-color2) !important; }





/* ==================================================
	common
================================================== */

/* ----------------------------------------
	heading
---------------------------------------- */

h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 1.4;
}

.x5l { font-size: 46px; line-height: 50px; }
.x4l { font-size: 46px; line-height: 50px; }
.x3l { font-size: 46px; line-height: 50px; }
.xxl { font-size: 40px; line-height: 46px; }
.xl { font-size: 30px; line-height: 34px; }
.h1 { font-size: 26px; line-height: 28px; }
.h2 { font-size: 24px; line-height: 26px; }
.h3 { font-size: 22px; line-height: 26px; }
.h4 { font-size: 20px; line-height: 24px; }
.h5 { font-size: 18px; line-height: 26px; }

@media screen and (min-width: 813px) {
	.x5l { font-size: 90px; line-height: 96px; }
	.x4l { font-size: 90px; line-height: 96px; }
	.x3l { font-size: 90px; line-height: 96px; }
	.xxl { font-size: 60px; line-height: 66px; }
	.xl { font-size: 40px; line-height: 44px; }
	.h1 { font-size: 36px; line-height: 40px; }
	.h2 { font-size: 32px; line-height: 36px; }
	.h3 { font-size: 26px; line-height: 30px; }
	.h4 { font-size: 20px; line-height: 26px; }
}

@media screen and (min-width: 1280px) {
	.x5l { font-size: 260px; line-height: 260px; }
	.x4l { font-size: 180px; line-height: 180px; }
	.x3l { font-size: 112px; line-height: 116px; }
	.xxl { font-size: 70px; line-height: 74px; }
	.xl { font-size: 50px; line-height: 52px; }
	.h1 { font-size: 40px; line-height: 42px; }
	.h2 { font-size: 34px; line-height: 40px; }
	.h3 { font-size: 28px; line-height: 34px; }
	.h4 { font-size: 22px; line-height: 28px; }
	.h5 { font-size: 20px; line-height: 28px; }
}


/* hLine -------------------- */

.hLine {
	overflow: hidden;
	font-weight: normal;
	text-align: center;
}
.hLine > span {
	display: inline-block;
	position: relative;
	padding: 0 .5em;
}
.hLine > span::before,
.hLine > span::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 99em;
	border-top: 1px solid #000;
}
.hLine > span::before {
	right: 100%;
}
.hLine > span::after {
	left: 100%;
}


/* title_line -------------------- */

.title_line {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
}


/* title_bar -------------------- */

.title_bar {
	padding: 15px 20px;
	color: #fff;
	text-align: center;
	background: var(--key-color2);
}



/* ----------------------------------------
	margin
---------------------------------------- */

.xxl + p { margin-top: 20px; }
.xl + p { margin-top: 20px; }
.h1 + p { margin-top: 10px; }
.h2 + p { margin-top: 16px; }
.h3 + p { margin-top: 16px; }
.h4 + p { margin-top: 10px; }
.h5 + p { margin-top: 10px; }

.visid p + p,
.visid div + p,
.visid table + p,
.visid ul + p,
.visid ol + p,
.visid dl + p
.visid img + p {
	margin-top: 1em;
}



/* ----------------------------------------
	sup
---------------------------------------- */

sup.small {
	vertical-align: super;
	font-size: 13.3333px;
	font-weight: normal;
}



/* ----------------------------------------
	text
---------------------------------------- */

.tcenter { text-align: center !important; }
.tleft { text-align: left !important; }
.tright { text-align: right !important; }
.fw_normal { font-weight: normal !important; }
.fw_bold { font-weight: bold !important;}



/* ----------------------------------------
	button
---------------------------------------- */

a.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
	vertical-align: bottom;
	padding: .5em 1.2em;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	background: #000;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus {
	color: #fff;
	text-decoration: none;
}
a.button:hover {
	background: #5a5a5a;
}
a.button.slim {
	font-size: 13px;
}
a.button.sslim {
	font-size: 11px;
}


/* large -------------------- */

a.button.large {
	padding: .8em 1.2em;
	font-size: 20px;
}

@media screen and (min-width: 1024px) {
	a.button.large {
		font-size: 22px;
	}
}


/* line -------------------- */

a.button.line {
	border: 2px solid #000;
}
a.button.line:hover {
	color: #000;
	background: #fff;
}


/* icon -------------------- */

a.button.icon {
	flex-direction: row;
	gap: 16px;
}
a.button.icon::after {
	content: "";
	width: 30px;
	min-width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* download */
a.button.download {
	color: #000;
	background: var(--key-color);
}
a.button.download::after {
	background-image: url(images/img-icon-download.png);
}
a.button.download:hover {
	background: var(--key-color60);
}



/* ----------------------------------------
	notes
---------------------------------------- */

.notes {
	padding-left: 1em;
	font-size: 12px;
	line-height: 1.33;
	text-indent: -1em;
}
.notes > li:nth-child(n+2) {
	margin-top: .5em;
}


/* num -------------------- */

.notes_num {
	counter-reset: num;
	font-size: 12px;
	line-height: 1.33;
}
.notes_num > li {
	position: relative;
	padding-left: 3em;
}
.notes_num > li:nth-child(n+2) {
	margin-top: .5em;
}
.notes_num > li::before {
	counter-increment: num;
	content: "\203B" counters(num, "-") "";
	position: absolute;
	left: 0;
}



/* ----------------------------------------
	list_basic
---------------------------------------- */

.list_basic > li {
	position: relative;
	padding-left: 1em;
	line-height: 1.6;
}
.list_basic > li:nth-child(n+2) {
	margin-top: .5em;
}
.list_basic > li::before {
	content: "\2022";
	position: absolute;
	left: 0;
	top: .2em;
	font-family: Arial;
	font-size: 130%;
	line-height: 1;
}


/* row -------------------- */

.list_basic.row {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 2em;
}
.list_basic.row > li:nth-child(n+2) {
	margin-top: 0;
}



/* ----------------------------------------
	table - scroll
---------------------------------------- */

.table_scroll {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.table_scroll::-webkit-scrollbar {
	height: 4px;
}
.table_scroll::-webkit-scrollbar-track {
	background: #f2f2f2;
}
.table_scroll::-webkit-scrollbar-thumb {
	background: #0096d6;
	border-radius: 2px;
}



/* ----------------------------------------
	d_none
---------------------------------------- */

@media screen and (min-width: 480px) {
	.d_none_sm {
		display: none !important;
	}
}

@media screen and (min-width: 813px) {
	.d_none_md {
		display: none !important;
	}
}

@media screen and (min-width: 1280px) {
	.d_none_lg {
		display: none !important;
	}
}



/* ----------------------------------------
	cont_wrap
---------------------------------------- */

.cont_wrap {
	padding: 40px 20px;
}

@media screen and (min-width: 813px) {
	.cont_wrap {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}



/* ----------------------------------------
	YouTube
---------------------------------------- */

.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}





/* ==================================================
	main
================================================== */

.main {
	background: var(--key-color10);
}
.main .media {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--standard-gray);
}
.main .cont > div {
	padding: 20px;
}
.main .cont .item1 {
	background: var(--key-color);
}
.main .cont .item2 {
	background: var(--key-color70);
}

@media screen and (min-width: 813px) {
	.main {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.main .cont {
		display: flex;
		flex-direction: column;
	}
	.main .cont .item3 {
		display: flex;
		align-items: center;
		height: 100%;
	}
}

@media screen and (min-width: 1280px) {
	.main .cont > div {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}





/* ==================================================
	intel
================================================== */

/* ----------------------------------------
	intel_about
---------------------------------------- */

.intel_about {
	display: grid;
	gap: 20px 40px;
}

@media screen and (min-width: 813px) {
	.intel_about {
		grid-template-columns: 360px 1fr;
		align-items: center;
	}
	.intel_about.w220 {
		grid-template-columns: 220px 1fr;
	}
}



/* ----------------------------------------
	intel_npu
---------------------------------------- */

.intel_npu {
	margin-top: 20px;
}
.intel_npu_list > li {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: flex-start;
	gap: 10px;
}
.intel_npu_list .h4 {
	padding: 8px 10px 12px;
	color: #fff;
	text-align: center;
	background: var(--key-color2);
}
.intel_npu_list h5 {
	margin-bottom: 5px;
	padding-bottom: 5px;
	color: var(--key-color2);
	font-size: 18px;
	border-bottom: 1px solid #000;
}

@media screen and (min-width: 480px) {
	.intel_npu_list > li {
		grid-template-columns: 100px 1fr;
	}
}

@media screen and (max-width: 1023px) {
	.intel_npu_list {
		display: grid;
		gap: 20px;
		margin-top: 20px;
	}
}

@media screen and (min-width: 1024px) {
	.intel_npu {
		position: relative;
	}
	.intel_npu_list > li {
		position: absolute;
		left: 584px;
	}
	.intel_npu_list > li:nth-child(1) {
		top: 60px;
	}
	.intel_npu_list > li:nth-child(2) {
		top: 185px;
	}
	.intel_npu_list > li:nth-child(3) {
		top: 305px;
	}
}



/* ----------------------------------------
	intel_ai_usage_list
---------------------------------------- */

.intel_ai_usage_list {
	display: inline-block;
	text-align: left;
}
.intel_ai_usage_list > li {
	display: grid;
	align-items: center;
	gap: 5px 20px;
}
.intel_ai_usage_list > li:nth-child(n+2) {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #000;
}

@media screen and (min-width: 813px) {
	.intel_ai_usage_list > li {
		grid-template-columns: 200px 1fr;
	}
	.intel_ai_usage_list h4 {
		text-align: center;
	}
}



/* ----------------------------------------
	intel_thread_director
---------------------------------------- */

.intel_thread_director {
	padding: 15px;
	font-size: 14px;
	text-align: center;
	background: var(--standard-gray);
}
.intel_thread_director li {
	margin-top: 10px;
	padding: 5px;
	color: #fff;
	background: var(--key-color);
}



/* ----------------------------------------
	intel_s1_features_list
---------------------------------------- */

.intel_s1_features_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}
.intel_s1_features_list > li {
	padding: 20px 10px;
	text-align: center;
	background: var(--key-color30);
}
.intel_s1_features_list > li > .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	height: 100%;
}



/* ----------------------------------------
	intel_graph
---------------------------------------- */

.intel_graph {
	display: grid;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}
.intel_graph > :first-child {
	text-align: center;
}

@media screen and (max-width: 812px) {
	.intel_graph > :first-child {
		order: 1;
	}
}

@media screen and (min-width: 813px) {
	.intel_graph {
		grid-template-columns: 400px 1fr;
	}
}





/* ==================================================
	chara_list
================================================== */

.chara_list {
	display: grid;
	gap: 30px;
	margin-top: 30px;
}
.chara_list .media {
	text-align: center;
}
.chara_list .cont {
	padding: 20px;
	background: var(--key-color10);
}

@media screen and (min-width: 813px) {
	.chara_list {
		gap: 40px;
		margin-top: 40px;
	}
	.chara_list > li {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media screen and (min-width: 1024px) {
	.chara_list > li {
		grid-template-columns: 40% 1fr;
	}
	.chara_list .cont {
		padding: 30px;
	}
}

@media screen and (min-width: 1280px) {
	.chara_list > li {
		grid-template-columns: 500px 1fr;
	}
}





/* ==================================================
	product
================================================== */

/* ----------------------------------------
	prod_main
---------------------------------------- */

.prod_main {
	background: var(--key-color10);
}
.prod_main .media {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--standard-gray);
}
.prod_main .cont > div {
	padding: 20px;
}
.prod_main .cont .title {
	background: var(--key-color);
}
.prod_main .cont .suptitle {
	background: var(--key-color70);
}
.prod_main .cont .icon {
	padding-top: 30px;
	padding-bottom: 30px;
}
.prod_main .cont .icon ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	text-align: center;
}
.prod_main .cont .icon ul .icons {
	display: flex;
	gap: 10px;
}
.prod_main .cont .icon ul p {
	margin-top: 10px;
	font-size: 11px;
}

@media screen and (min-width: 813px) {
	.prod_main {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.prod_main .cont {
		display: flex;
		flex-direction: column;
	}
	.prod_main .cont > div {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media screen and (max-width: 1023px) {
	.prod_main .cont .icon ul img {
		width: auto;
		height: 60px;
	}
}



/* ----------------------------------------
	prod_cont
---------------------------------------- */

.prod_cont {
	padding: 40px 20px 60px;
}



/* ----------------------------------------
	prod_link
---------------------------------------- */

.prod_link {
	text-align: center;
}
* + .prod_link {
	margin-top: 40px;
}


/* login -------------------- */

.prod_link .login {
	margin-top: 40px;
}
.prod_link .login * + .button {
	margin-top: 20px;
}



/* ----------------------------------------
	prod_chara
---------------------------------------- */

.prod_chara {
	margin-top: 40px;
}

@media screen and (min-width: 813px) {
	.prod_chara {
		margin-top: 60px;
	}
}



/* ----------------------------------------
	prod_spec
---------------------------------------- */

.prod_spec {
	margin-top: 40px;
}

@media screen and (min-width: 813px) {
	.prod_spec {
		margin-top: 60px;
	}
}


/* prod_spec_table -------------------- */

.prod_spec_table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	margin-top: 20px;
}

.prod_spec_table th,
.prod_spec_table td {
	padding: .6em .8em;
	font-size: 14px;
	text-align: center;
	border: 1px solid #ccc;
}
.prod_spec_table th {
	font-weight: bold;
	background: #f2f2f2;
}
.prod_spec_table th:first-child {
	width: 100px;
	text-align: left;
}

@media screen and (max-width: 479px) {
	.prod_spec_table {
		width: 440px;
	}
	.prod_spec_table th,
	.prod_spec_table td {
		font-size: 12px;
	}
}

@media screen and (min-width: 480px) {
	.prod_spec .table_scroll + .notes {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	.prod_spec_table th br {
	display: none;
}
	.prod_spec_table th:first-child {
		width: 180px;
	}
}





/* ==================================================
	d_plus
================================================== */

.d_plus {
	padding: 40px 20px;
	background: #f3f3f5;
}
.d_plus .btn_area {
	margin-top: 25px;
}

@media screen and (max-width: 812px) {
	.d_plus {
		text-align: center;
	}
	.d_plus .text_area h2 {
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 1px solid #707070;
	}
	.d_plus .btn_area .notes {
		margin-top: 20px;
	}
}

@media screen and (min-width: 813px) {
	.d_plus {
		padding: 40px;
	}
	.d_plus .text_area {
		display: flex;
		align-items: center;
	}
	.d_plus .text_area h2 {
		width: 45%;
		padding-right: 30px;
		font-size: 38px;
	}
	.d_plus .text_area h2 + div {
		padding: 20px 0 20px 30px;
		width: 55%;
		border-left: 1px solid #707070;
	}
	.d_plus .text_area {
		font-size: 20px;
	}
	.d_plus .btn_area {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-end;
	}
	.d_plus .btn_area .button {
		margin-left: 20px;
		white-space: nowrap;
	}
}

@media screen and (min-width: 1280px) {
	.d_plus {
		padding-right: 100px;
		padding-left: 100px;
	}
	.d_plus .btn_area .button {
		width: 430px;
	}
}





/* ==================================================
	partner
================================================== */

.partner img {
	width: 100%;
}





/* ==================================================
	footer
================================================== */

.footer {
	padding: 30px 20px;
}
.footer_list {
	font-size: 14px;
}
.footer_list a:link,
.footer_list a:visited {
	color: #000;
	text-decoration: none;
}
.footer_list a:hover {
	color: #000;
	text-decoration: underline;
}
.footer .copyright {
	font-size: 12px;
}

@media screen and (min-width: 813px) {
	.footer {
		text-align: center;
	}
	.footer_list {
		display: flex;
		justify-content: center;
	}
	.footer_list > li:not(:last-child)::after {
		content: "|";
		margin: 0 20px;
	}
}
