/* ==================================================
	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 {
	color: #fff;
	font-size: 16px;
	line-height: 1.375;
	background: #000;
}
.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: #cdb571;
	--gray: #5a5a5a;
	--standard-gray: #e6e6e6;
}





/* ==================================================
	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: #000;
	text-align: center;
	background: var(--key-color);
}



/* ----------------------------------------
	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;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	background: #fff;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus {
	color: #000;
	text-decoration: none;
}
a.button:hover {
	background: var(--key-color);
}
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 #fff;
}
a.button.line:hover {
	color: #fff;
	background: transparent;
}


/* 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: #fff;
	background: #666;
}
a.button.download::after {
	background-image: url(images/img-icon-download.png);
	filter: invert(1);
}
a.button.download:hover {
	background: var(--key-color);
}



/* ----------------------------------------
	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: 6px;
}
.table_scroll::-webkit-scrollbar-track {
	background: #f2f2f2;
}
.table_scroll::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #0096d6;
	border-radius: 3px;
}



/* ----------------------------------------
	cont_wrap
---------------------------------------- */

.cont_wrap {
	padding: 40px 20px;
}

@media screen and (min-width: 813px) {
	.cont_wrap {
		padding: 60px 40px;
	}
}



/* ----------------------------------------
	video
---------------------------------------- */

.video {
	position: relative;
}
.video::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


/* pop-up -------------------- */

.video .open {
	transition: .2s;
	cursor: pointer;
}
.video .open:hover {
	opacity: .75;
}
.video [id^="pop-up"] {
	display: none;
}
.video .overlay {
	display: none;
}
.video [id^="pop-up"]:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.video .window {
	width: 90vw;
	max-width: 560px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.video .close {
	cursor:pointer;
	position: absolute;
	color: #fff;
	font-size: 30px;
	right: -24px;
	top: -40px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}



/* ----------------------------------------
	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_content
================================================== */

.main_content {
	padding-bottom: 60px;
}

@media screen and (min-width: 813px) {
	.main_content {
		padding-bottom: 80px;
	}
}





/* ==================================================
	content
================================================== */

.content {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}





/* ==================================================
	amd
================================================== */

.amd {
	padding-top: 60px;
}
.amd_cont {
	text-align: center;
}
* + .amd_cont {
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #767676;
}
.amd_cont * + img,
.amd_cont img + * {
	margin-top: 20px;
}
.amd_cont img + .notes {
	margin-top: 1em;
}

@media screen and (min-width: 813px) {
	.amd {
		padding-top: 80px;
	}
	* + .amd_cont {
		padding-top: 60px;
		margin-top: 60px;
	}
}





/* ==================================================
	manga_dl
================================================== */

.manga_dl {
	display: flex;
	flex-direction: column;
	gap: 20px 40px;
	padding: 40px 20px;
	background: var(--gray);
}
.manga_dl a.button.download {
	margin-top: 30px;
	color: #000;
	background: #fff;
}
.manga_dl a.button.download::after {
	filter: none;
}
.manga_dl a.button.download:hover {
	background: var(--key-color);
}

@media screen and (max-width: 812px) {
	.manga_dl {
		text-align: center;
	}
}

@media screen and (min-width: 813px) {
	.manga_dl {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}
	.manga_dl .media {
		min-width: 400px;
		width: 400px;
	}
}





/* ==================================================
	model
================================================== */

.model {
	margin-top: 60px;
}

@media screen and (min-width: 813px) {
	.model {
		margin-top: 80px;
	}
}





/* ==================================================
	product
================================================== */

/* ----------------------------------------
	prod_main
---------------------------------------- */

.prod_main {
	display: grid;
	gap: 20px 40px;
	text-align: center;
}
.prod_main .copy {
	margin-bottom: 5px;
}
.prod_main .size {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.prod_main .size > li {
	min-width: 120px;
	padding: 10px;
	color: #fff;
	text-align: center;
	background: #aeaeae;
}

@media screen and (min-width: 1024px) {
	.prod_main {
		grid-template-columns: 40% auto;
		justify-content: center;
		align-items: center;
	}
	.prod_main .specLink_wrap {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 40px;
	}
	.prod_main .specLink_wrap .prod_link .button {
		white-space: nowrap;
	}
}



/* ----------------------------------------
	spec
---------------------------------------- */

.spec {
	display: inline-block;
	margin-top: 20px;
	text-align: left;
}
.spec h3 {
	margin-bottom: 5px;
}
.spec_list {
	display: inline-grid;
	grid-template-columns: repeat(2, auto);
	gap: 5px;
	font-size: 15px;
}
.spec_list dt {
	white-space: nowrap;
}



/* ----------------------------------------
	prod_link
---------------------------------------- */

.prod_link {
	margin-top: 30px;
	text-align: center;
}
.prod_link .button + .notes {
	margin-top: 1em;
}



/* ----------------------------------------
	logoText
---------------------------------------- */

.logoText {
	display: grid;
	gap: 20px;
	margin-top: 40px;
}
.logoText .media {
	text-align: center;
}
.logoText .cont {
	padding: 20px;
	color: #000;
	background: var(--key-color);
}

@media screen and (min-width: 813px) {
	.logoText {
		grid-template-columns: 240px 1fr;
		align-items: center;
		margin-top: 60px;
	}
}



/* ----------------------------------------
	prod_chara
---------------------------------------- */

.prod_chara {
	margin-top: 40px;
}
.prod_chara_list {
	display: grid;
	gap: 20px;
}
.prod_chara_list > li {
	background: var(--standard-gray);
}
.prod_chara_list .media img {
	width: 100%;
}
.prod_chara_list .cont {
	padding: 20px;
	color: #000;
}

@media screen and (min-width: 813px) {
	.prod_chara {
		margin-top: 60px;
	}
	.prod_chara_list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1280px) {
	.prod_chara_list {
		column-gap: 30px;
	}
}



/* ----------------------------------------
	ai_comp
---------------------------------------- */

.ai_comp {
	display: grid;
	gap: 20px 40px;
	margin-top: 40px;
}
.ai_comp_title h3 {
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-bottom: .5em;
}
.ai_comp_title h3::after {
	content: "";
	position: absolute;
	left: -20px;
	bottom: -.5em;
	z-index: -1;
	width: calc(100% + 40px);
	height: 1em;
	background: var(--key-color);
}
.ai_comp .media {
	text-align: center;
}
.ai_comp_list {
	display: grid;
	gap: 10px;
	margin-top: 20px;
}
.ai_comp_list > li {
	display: grid;
	grid-template-columns: 50px 1fr;
	align-items: center;
	gap: 20px;
}

@media screen and (min-width: 813px) {
	.ai_comp {
		margin-top: 60px;
	}
	.ai_comp_title h3::after {
		left: -40px;
		width: calc(100% + 80px);
	}
}

@media screen and (min-width: 1024px) {
	.ai_comp {
		grid-template-columns: auto 40%;
	}
	.ai_comp .media {
		align-self: flex-end;
	}
}



/* ----------------------------------------
	prod_lineup
---------------------------------------- */

.prod_lineup {
	margin-top: 60px;
}
.prod_lineup > li {
	text-align: center;
}
.prod_lineup .media {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
	background: var(--gray);
}
.prod_lineup .cont {
	padding: 20px 20px 60px;
}
.prod_lineup .spec_wrap.item2 {
	display: grid;
	gap: 30px;
}

@media screen and (min-width: 813px) {
	.prod_lineup .spec_wrap.item2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.prod_lineup .cont {
		padding: 40px 40px 60px;
	}
}

@media screen and (min-width: 1024px) {
	.prod_lineup {
		display: grid;
		gap: 80px;
	}
	.prod_lineup > li {
		display: flex;
		justify-content: space-between;
	}
	.prod_lineup > li:nth-child(even) {
		flex-direction: row-reverse;
	}
	.prod_lineup .media {
		width: 40%;
	}
	.prod_lineup .cont {
		align-self: center;
		width: 60%;
		padding: 0 30px;
		text-align: left;
	}
	.prod_lineup .spec {
		display: block;
	}
}

@media screen and (min-width: 1280px) {
	.prod_lineup .media {
		width: calc(50% - 20px);
	}
	.prod_lineup .cont {
		width: calc(50% + 20px);
		padding: 0 40px;
	}
}





/* ==================================================
	links
================================================== */

.links {
	padding: 0 20px;
	margin-top: 60px;
	text-align: center;
}
.links_list > li:nth-child(n+2) {
	margin-top: 40px;
}
.links_list .button + p {
	margin-top: 20px;
}

@media screen and (min-width: 813px) {
	.links {
		padding: 0 40px;
		margin-top: 80px;
	}
}





/* ==================================================
	d_plus
================================================== */

.d_plus {
	padding: 40px 20px;
}
.d_plus .text_area {
	padding: 20px;
	border: 1px solid #fff;
}
.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;
	}
	.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 {
	text-align: center;
}





/* ==================================================
	footer
================================================== */

.footer {
	padding: 30px 20px;
}
.footer_list {
	font-size: 14px;
}
.footer_list a:link,
.footer_list a:visited {
	color: #fff;
	text-decoration: none;
}
.footer_list a:hover {
	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;
	}
}
