/* ==================================================
	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 {
	/* #a89efa - rgb(168 158 250) */
	--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;

	--standard-gray: #e6e6e6;

	/* Poly */
	--indigo: #002a4e;
	--indigo75: #405f7a;
	--indigo50: #7f94a6;
	--indigo35: #a6b5c1;
	--slate: #405c7d;
	--wave: #608fab;
	--sky: #b0ccd9;
	--sand: #f2e8c9;
	--lava: #ef3200;
}

.fc_indigo { color: var(--indigo) !important; }
.fc_indigo75 { color: var(--indigo75) !important; }
.fc_indigo50 { color: var(--indigo50) !important; }
.fc_indigo35 { color: var(--indigo35) !important; }
.fc_lava { color: var(--lava) !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;
}



/* ----------------------------------------
	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;
	}
}


/* quote -------------------- */

a.button.quote {
	background: var(--lava);
}
a.button.quote:hover {
	background: var(--indigo);
}



/* ----------------------------------------
	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;
}



/* ----------------------------------------
	display
---------------------------------------- */

.d_none { display: none !important; }
.d_block { display: block !important; }

@media screen and (min-width: 480px) {
	.d_none_sm { display: none !important; }
	.d_block_sm { display: block !important; }
}

@media screen and (min-width: 813px) {
	.d_none_md { display: none !important; }
	.d_block_md { display: block !important; }
}

@media screen and (min-width: 1280px) {
	.d_none_lg { display: none !important; }
	.d_block_lg { display: block !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-color30);
}
.main .cont > div {
	padding: 20px;
}
.main .cont .bar1 {
	background: var(--key-color);
}
.main .cont .bar2 {
	background: var(--key-color70);
}
.main .cont .bar3 {
	padding: 0;
}
.main .cont .bar3 img {
	height: 90px;
}
.main .media img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 813px) {
	.main {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.main .cont {
		display: flex;
		flex-direction: column;
	}
	.main .cont .bar3 {
		display: flex;
		align-items: center;
		height: 100%;
	}
	.main .cont .bar3 img {
		height: 120px;
	}
}

@media screen and (min-width: 1280px) {
	.main .cont > div {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* ==================================================
	local_navi
================================================== */

html {
	scroll-padding-top: 73px;
}
.local_navi {
	position: sticky;
	top: 0;
	z-index: 5;
	width: 100%;
}
.local_navi_menu {
	padding: 10px;
	background: #fff;
}
.local_navi_menu_level1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 0 auto;
}
.local_navi_menu_level1 > li a {
	display: block;
	position: relative;
	transition: .2s;
	width: 100%;
	height: 100%;
	padding: 10px 5px 26px;
	color: #000 !important;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	background: var(--key-color);
	border-radius: 6px;
}
.local_navi_menu_level1 > li a:hover {
	background: var(--key-color50);
}
.local_navi_menu_level1 > li a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 8px;
	transform: translateX(-50%);
	width: 20px;
	height: 10px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)" fill="%23000"></path></svg>');
}

@media screen and (min-width: 813px) {
	html {
		scroll-padding-top: 80px;
	}
	.local_navi_menu_level1 {
		grid-template-columns: repeat(4, 1fr);
	}
	.local_navi_menu_level1 > li a {
		font-size: 20px;
	}
}

.intro {
	padding: 20px 16px;
}
.intro .d_grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	place-content: center;
	 place-items: center;
	gap: 10px;
	margin: 0 auto;
}
@media screen and (min-width: 813px) {
	.intro .d_grid {
	grid-template-columns: repeat(2, 1fr);
	}
}
.intro >* {
	margin-top: 15px;
}

/* ==================================================
	poly_chara_list
================================================== */

.poly_chara_list {
	display: grid;
	row-gap: 40px;
	margin-top: 40px;
}
.poly_chara_list > li {
	display: grid;
	gap: 20px 30px;
}
.poly_chara_list h3 {
	position: relative;
	margin-bottom: 20px;
	padding-left: 1.2em;
	color: var(--indigo);
}
.poly_chara_list h3::before {
	content: "\25A0";
	position: absolute;
	left: 0;
}
.poly_chara_list .media {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.poly_chara_list > li {
		grid-template-columns: 1fr 30.64516129032258%;
	}
}









/* ==================================================
	product
================================================== */

.product {
	margin-top: 60px;
	padding: 40px 20px 60px;
	border-top: 1px solid #000;
}

@media screen and (min-width: 813px) {
	.product {
		padding-top: 60px;
	}
}



/* ----------------------------------------
	prod_head
---------------------------------------- */

.prod_head {
	position: relative;
	width: 100%;
	margin-top: 10px;
	padding: 10px 10px 12px;
	color: var(--indigo);
	text-align: center;
	background: var(--sky);
	border-radius: 10px;
}
.prod_head::after {
	content: "";
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
	height: 11px;
	aspect-ratio: 2;
	clip-path: polygon(50% 100%,100% 0,0 0);
	background: var(--sky);
}



/* ----------------------------------------
	prod_body
---------------------------------------- */

.prod_body {
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 30px;
}

@media screen and (min-width: 813px) {
	.prod_body {
		padding-top: 40px;
	}
}



/* ----------------------------------------
	prod_main
---------------------------------------- */

.prod_main {
	display: grid;
	gap: 20px 40px;
}
.prod_main .cont h2 {
	padding-bottom: .3em;
	text-align: center;
	border-bottom: 1px solid #000;
}
.prod_main .media {
	text-align: center;
}
.prod_main .link_list {
	display: grid;
	gap: 10px;
	width: 100%;
	max-width: 420px;
	margin: 40px auto 0;
}
.prod_main .link_list .button {
	width: 100%;
}
.prod_main .link_list p {
	margin-top: 15px;
	font-size: 12px;
}

@media screen and (max-width: 812px) {
	.prod_main .cont {
		order: 1;
	}
}

@media screen and (min-width: 813px) {
	.prod_main {
		grid-template-columns: 1fr 42.85714285714286%;
	}
	.prod_main .cont {
		align-self: center;
	}
}



/* ----------------------------------------
	prod_point
---------------------------------------- */

.prod_point {
	margin-top: 30px;
}
.prod_point h3 + .list_basic {
	margin-top: .5em;
}
.prod_point.img {
	display: grid;
	gap: 20px 40px;
}
.prod_point.img .media {
	text-align: center;
}

@media screen and (min-width: 813px) {
	.prod_point {
		margin-top: 40px;
	}
	.prod_point.img {
		grid-template-columns: 1fr 42.85714285714286%;
	}
}



/* ----------------------------------------
	prod_chara
---------------------------------------- */

.prod_chara {
	margin-top: 30px;
	padding: 30px 20px;
	text-align: center;
	border: 1px solid #000;
}
.prod_chara h3 {
	color: var(--lava);
}
.prod_chara .copy {
	font-size: 18px;
}
.prod_chara_list {
	display: grid;
	justify-content: center;
	gap: 30px;
	margin: 30px auto 0;
}
.prod_chara_list.col2 {
	max-width: 800px;
}
.prod_chara_list.col3 {
	max-width: 1020px;
}
.prod_chara_list .inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	height: 100%;
}

@media screen and (min-width: 480px) {
	.prod_chara_list {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
}

@media screen and (min-width: 813px) {
	.prod_chara {
		margin-top: 40px;
		padding: 30px;
	}
}



/* ----------------------------------------
	prod_video
---------------------------------------- */

.prod_video {
	margin-top: 30px;
	text-align: center;
	display: grid;
		/*grid-auto-flow: column;*/
	gap: 20px;
		margin: 40px auto 0;
	grid-template-columns: repeat(1, 1fr);
}
.prod_video_wrap {
	max-width: 800px;
	margin: 20px auto 0;
}

@media screen and (min-width: 813px) {

	.prod_video.col2 {
		grid-template-columns: repeat(2, 1fr);
	}
}





/* ==================================================
	footer
================================================== */

.footer {
	padding: 30px 20px;
	border-top: 1px solid #000;
}
.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;
	}
}
