@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@300;500;600&display=swap');

/* - ALL -- */
*,
*:after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	}
body.side-open {
	overflow: hidden;
	}
/*   フェード */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .5s ease;
	}
body.fadeout::after {
	opacity: 1;
	}


/*   フォントファミリー */
html {
	font-family: 'IBM Plex Sans JP', Meiryo, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Sans Emoji';
	font-weight: 300;
	font-size: 62.5%;
	background-color: #fff;
	}

body {
	color: #333;
	font-size: 1.4rem;
	line-height: 1.6;
	}

/*   文字リンク色 */
a {
	transition: color .3s ease, background-color .3s ease;
	outline: none;
	color: #000;
	}
a:link {
	text-decoration: none;
	color: #000;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
a:visited {
	text-decoration: none;
	color: #000;
	}
a:active { 
	text-decoration: none;
	color: #000;
	}
a:hover {
	text-decoration: none;
	color: #c00;
	}

/*   p justify */
p {
	margin: 0 0 0 0;
	padding: 0 0 1em 0;
	text-align: justify;
	text-justify: inter-ideograph;
	}
.no-justify {
	text-align: left;
	text-justify: none;
	}
i {
	font-style: italic;
	}
strong {
	font-weight: 600;
	}
span.ruby {
	font-size: 75%;
	}
img {
	line-height: 0;
	vertical-align: bottom;
	}
ruby[data-ruby] {
	position: relative;
	display: inline-block;
	}
ruby[data-ruby]::before {
	content: attr(data-ruby);
	width: fit-content;
	position: absolute;
	top: -0.8em;
	left: 50%;
	right: 50%;
	transform: translate(-50%, 0);
	font-size: 0.5em;
	text-align: center;
	white-space: nowrap;
	}
ruby[data-ruby] rt {
	display: none;
	}
/*   見出しリセット */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: 300;
	line-height: 1;
	color: #000;
	}
/*   リストリセット */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
	}

/*   clearfix */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}

/* - ドロワーメニュー */
.overlay {
	content: '';
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 24px;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	transition: all .5s ease;
	z-index: 3;
	}
.side-open .overlay {
	visibility: visible;
	cursor: pointer;
	background: rgba(0,0,0,0.6);
	}
.side-open .overlay::after {
	visibility: visible;
	color: rgba(255,255,255,0.8);
	}
.side-menu {
	position: fixed;
	top: 0;
	left: 24px;
	width: 300px;
	height: 100%;
	padding: 0 0 0 0;
	background: #fff;
	z-index: 1;
	overflow-y: auto;
	visibility: hidden;
	transition: all .5s ease;
	}
.side-open .side-menu {
	visibility: visible;
	}
.side-menu-btn {
	position: fixed;
	top: 0;
	left: 0;
	width: 24px;
	height: 100%;
	padding: 5px 4px 5px 4px;
	cursor: pointer;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
	/* 	background: linear-gradient(45deg,
		#3d62ad,
		#3d62ad 46%,
		#ccc 46%,
		#ccc 50%,
		#3d62ad 50%,
		#3d62ad 96%,
		#ccc 96%,
		#ccc
		); */
	/* background-size: 17px 17px; */
	/* background-size: 13px 13px; */
	border-right: 1px solid #666;
	background-color: #fff;
	transition: all .5s ease;
	}
.side-menu-btn:hover {
/* 	background: linear-gradient(45deg,
		#00afec,
		#00afec 47%,
		#fff 47%,
		#fff 50%,
		#00afec 50%,
		#00afec 97%,
		#fff 97%,
		#fff
		);
	background-size: 17px 17px; */
	background-color: #f7f7f7;
	}

.btn-wrapper-all {
	position: fixed;
	top: calc(50vh - 7px);
	left: 4px;
	width: 16px;
	height: 14px;
	}
.btn-wrapper {
	position: relative;
	display: block;
	cursor: pointer;
	width: 16px;
	height: 14px;
	}
.btn-wrapper .point {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	width: 16px;
	height: 2px;
	margin: auto;
	background: #000;
	transition: all .3s ease;
	}
.btn-wrapper .point.top {
	top: 0;
	}
.btn-wrapper .point.mid {
	top: 0;
	bottom: 0;
	}
.btn-wrapper .point.bot {
	bottom: 0;
	}
.side-open .top {
	width: 18px;
	height: 2px;
	left: 2px;
	background: #000;
	transform-origin: left top;
	transform: rotate(45deg);
	}
.side-open .mid {
	opacity: 0;
	}
.side-open .bot {
	width: 18px;
	height: 2px;
	left: 2px;
	background: #000;
	transform-origin: left bottom;
	transform: rotate(-45deg);
	}
.wrapper {
	position: relative;
	width: calc(100% - 24px);
	height: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 24px;
	transition: transform .5s ease;
	z-index: 2;
	}
.side-open .wrapper,
.side-open .overlay {
	transform: translate3d(300px, 0, 0);
	}

.side-menu h2.side-menu-h2 {
	padding: 1rem 0 1rem 1rem;
	margin: 1rem 0 0 0;
	color: #000;
	font-size: 0.7em;
	border-bottom: 1px solid #666;
	}
#insert-menu ul.menu-list {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
#insert-menu ul.menu-list li {
	font-size: 1em;
	line-height: 1.35;
	font-weight: 300;
	border-bottom: 1px dotted #ccc;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	background-color: #fff;
	transition: color .3s ease, background-color .3s ease;
	}
#insert-menu ul.menu-list li:hover {
	background-color: #f7f7f7;
	}
#insert-menu ul.menu-list li a {
	display: block;
	width: 100%;
	background-color: transparent;
	padding: 1.4rem 0.5rem 1.4rem 1rem;
	transition: color .3s ease, font-weight .3s ease;
	}
#insert-menu ul.menu-list li a span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.35;
	}
#insert-menu ul.menu-list li a:hover {
	text-decoration: none;
	}

#footer-menu ul.footer-link-ul {
	font-size: 1.2rem;
	line-height: 1;
	padding: 1.4rem 1rem 1.4rem 1rem;
	}
#footer-menu ul.footer-link-ul li {
	padding: 1px 0 0 16px;
	margin: 0.7rem 0 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 12px auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
#footer-menu ul.footer-link-ul li a {
	}
#footer-menu ul.footer-link-ul li a:hover {
	text-decoration: none;
	}

/* - 構造 -- */
#top {	/* フッタ固定 */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	height: 100%;
	background-color: #fff;
	}
#main-wrapper {
	position: relative;
	width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	background-color: #fff;
	flex: 1 0 auto;	/* フッタ固定 */
	}
.main-inner {
	padding: 7% 4% 4% 4%;
	margin: 0 0 0 0;
	}

.top-padding-zero {
	padding-top: 2% !important;
	}
.checkarea-wrapper {
	padding: 5% 4% 5% 4%;
	margin: 2% 0 2% 0;
	background-color: #efefef;
	}

.all-div {
	position: relative;
	width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 16px 0;
	text-align: right;
	}
.left-div {
	position: relative;
	width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 16px 0;
	}
.right-div {
	position: relative;
	width: 100%;
	padding: 2em 0 0 0;
	margin: 0 0 0 0;
	background-color: transparent;
	}
.sub-wrapper {
	padding: 0 0 1em 0;
	margin: 3em 0 0 0;
	}
.artist-wrapper {
	padding: 1em 0 0 0;
	margin: 0 0 0 0;
	}
.artist-wrapper + .artist-wrapper {
	padding: 1em 0 0 0;
	margin: 3em 0 0 0;
	}

.artist-wrapper2 {
	padding: 1em 0 2em 0;
	margin: 0 0 0 0;
	}

.artist-wrapper.border {
	padding: 1em 0 3em 0;
	margin: 0 0 0 0;
	border-bottom: 1px solid #ccc;
	}
.artist-wrapper.border + .artist-wrapper.border {
	padding: 1em 0 3em 0;
	margin: 1em 0 0 0;
	border-bottom: 1px solid #ccc;
	}
.artist-wrapper.border + .artist-wrapper {
	padding: 1em 0 3em 0;
	margin: 1em 0 -1em 0;
	border-bottom: 1px solid #ccc;
	}

.language {
	position: absolute;
	top: 0;
	right: 4%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.language a {
	font-size: 80%;
	display: block;
	padding: 0.25em 2em 0.25em 2em;
	margin: 0 0 0 0;
	background-color: #fff;
	color: #999;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-radius: 0 0 6px 6px;
	}
.language a:hover {
	text-decoration: none;
	background-color: #81cde4;
	color: #fff;
	border-left: 1px solid #81cde4;
	border-right: 1px solid #81cde4;
	border-bottom: 1px solid #81cde4;
	}

/*   ロゴ */
.awg-all {
	display: flex;
	flex-direction: row;
	}
.awg-right {
	margin: 0 0 -0.1em 1.5em;
	align-self: flex-end;
	}
.awg-mark {
	width: 93%;
	height: auto;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}
.logo-mark {
	width: 120%;
	height: auto;
	padding: 0 0 0 0.1rem;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}
.a-touch {
	display: inline-block;
	}
.all-div h1 {
	/* border-bottom: 1px solid #666; */
	}

.logo-navi {
	position: sticky;
	/* position: fixed; */
	top: 4%;
	}
.logo-navi a {
	display: inline-block;
	}
h1 {
	/* border-bottom: 2px solid #666; */
	font-weight: 600;
	color: #000;
	font-size: 1.8em;
	line-height: 1.1;
	width: fit-content;
	}
h1.aichi {
	/* border-bottom: 2px solid #666; */
	font-weight: 600;
	color: #000;
	font-size: 1.8em;
	line-height: 1.1;
	}
h1.aichi span.chotai {
	font-size: 0.64em;
	line-height: 1.7;
	display: block;
	}
h1 span.hoso {
	font-weight: 300;
	font-size: 1em;
	line-height: 1.5;
	display: inline-block;
	}
p.title {
	/* border-bottom: 2px solid #666; */
	/* font-family: 'Noto Serif JP', serif; */
	padding: 0 0 0 0;
	margin: 0.25em 0 0 0;
	font-size: 0.8em;
	line-height: 1.5;
	color: #000;
	font-weight: 600;
	}


h1 img {
	width: 100%;
	/* max-width: 400px; */
	height: auto;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	padding-bottom: 8px;
	}
.all-div h1 img {
	padding-top: 2%;
	}
.logo-gaw-en {
	width: 80%;
	height: auto;
	padding-top: 8px;
	}

/*   見出し */
header h2 {
	font-size: 1.8rem;
	line-height: 1.35;
	font-weight: 600;
	padding: 1.6rem 0 1.6rem 0;
	/* margin: 0 0 2.4rem 0; */
	margin: 0 0 0 0;
	border-bottom: 1px solid #666;
	}
header h2 span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}

/* - フッタ -- */
#footer {
	width: 100%;
	padding: 4% 4% 6% 4%;
	margin: 0 0 0 0;
	background-color: #fff;
	}

/*   ページトップへ */
.pagetop {
	display: none;
	position: fixed;
	bottom: 0;
	right: 4%;
	z-index: 800;
	}
.pagetop a {
	display: block;
	width: 44px;
	height: 44px;
	border: 1px solid #9c9e9c;
	background-color: transparent;
	border-radius: 50%;
	text-align: center;
	font-size: 0;
	text-decoration: none;
	line-height: 44px;
	background-image: url("../img/pagetop.svg");
	background-size: cover;
	background-repeat: no-repeat;
	opacity: .6;
	filter: alpha(opacity=60);
	transform: translateZ(0);
	backface-visibility: hidden;
	overflow: hidden;
	transition-duration: 0.3s;
	transition-property: color, background-color, opacity;
	}
.pagetop a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	background-color: #555;
	border: 1px solid #555;
	background-position: bottom;
	}

/*   フッタメニュー */
.footer-link {
	padding: 0 0 1.4rem 0;
	margin: 0 0 0 0;
	}
.footer-link ul.footer-link-ul {
	font-size: 1.2rem;
	line-height: 1;
	}
.footer-link ul.footer-link-ul li {
	padding: 1px 0 0 16px;
	margin: 0.7rem 0 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 12px auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
.footer-link ul.footer-link-ul li a {
	}
.footer-link ul.footer-link-ul li a:hover {
	text-decoration: none;
	}

.footer-info {
	border-top: 1px solid #666;
	padding: 1.4rem 0 1rem 0;
	margin: 0 0 0 0;
	}
.footer-info img {
	width: 260px;
	height: auto;
	padding: 0 0 0 0;
	margin: 0 0 0.6rem 0;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}
.footer-info a.a-touch {
	display: inline-block;
	}

.footer-info p {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	font-size: 1rem;
	line-height: 1.3;
	}
.footer-info p span.padding-r {
	display: block;
	margin: 0 0 0 0.1em;
	}

/*   コピーライト */
.footer-caption {
	border-top: 1px solid #666;
	padding: 1em 0 0 0;
	line-height: 1;
	background-color: transparent;
	}
.footer-caption small {
	font-size: 1.0rem;
	margin: 0 0 0 0.1em;
	}
.footer-caption span {
	font-family: Arial;
	}
.footer-caption p {
	padding: 0.75em 0 0 0;
	margin: 0 0 0 0.1em;
	font-size: 1.0rem;
	}

/* - メイン -- */
.read-p p:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
/*   メインリスト -- */
h2.exhibition-title {
	font-size: 2em;
	line-height: 1.1;
	padding: 0 0 0.75em 0;
	margin: 0 0 0 0;
	}
h3.about-title {
	padding: 0 0 0.75em 0;
	margin: 0 0 0 0;
	font-size: 1em;
	}
h2.topic-title {
	font-weight: 600;
	padding: 0 0 0.75em 0;
	margin: 0 0 1em 0;
	font-size: 1.2em;
	line-height: 1.5;
	border-bottom: 1px solid #666;
	}
h2.topic-title span {
	font-size: 0.8em;
	display: inline-block;
	margin: 0 0 0.5em 0;
	}

h3.list-title {
	font-weight: 300;
	padding: 0 0 0.75em 0;
	margin: 0 0 1em 0;
	font-size: 1.2em;
	line-height: 1.5;
	border-bottom: 1px solid #666;
	}
h3.list-title span {
	font-size: 0.8em;
	display: inline-block;
	margin: 0 0 0.5em 0;
	}

.right-div ul.menu-list {
	/* display: none; */
	padding: 0 0 0 0;
	margin: 0 0 1.2rem 0;
	}
.right-div ul.menu-list li {
	font-size: 1.6em;
	line-height: 1.35;
	border-bottom: 1px dotted #666;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	background-color: #fff;
	transition: color .3s ease, background-color .3s ease;
	}
.right-div ul.menu-list li:hover {
	background-color: #f7f7f7;
	}
.right-div ul.menu-list li a {
	display: block;
	width: 100%;
	background-color: transparent;
	padding: 1.4rem 1rem 1.4rem 0;
	transition: color .3s ease, font-weight .3s ease;
	}



/* - 作品リスト -- */
ul.link-list {
	padding: 0 0 2em 0;
	margin: -1em 0 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
ul.link-list li {
	width: 48%;
	font-size: 1em;
	margin: 3em 0 0 0;
	}
ul.link-list li span.year-no {
	font-size: 6.6vw;
	}
ul.link-list li a {
	color: #333;
	width: 100%;
	background-color: transparent;
	display: block;
	transition: color .3s ease, background-color .3s ease, font-weight .3s ease;
	}
ul.link-list li a:hover {
	color: #c00;
	text-decoration: none;
	}

.work-all {
	width: 100%;
	margin: 0 0 0 0;
	}
.work-img {
	width: 100%;
	aspect-ratio: 3 / 2;
	}
.tall .work-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	}
.work-img-inner {
	width: 100%;
	height: 100%;
	}
.work-img-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom left;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	pointer-events: none;
	-webkit-touch-callout: none;
	touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	}
.tall .work-img-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom left;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	pointer-events: none;
	-webkit-touch-callout: none;
	touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	}
.modaal-gallery-item img {
	pointer-events: none;
	-webkit-touch-callout: none;
	touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	}

.work-title {
	width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.work-title p.work-credit + h4.work-name {
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: 600;
	padding: 0.7em 0 0.2em 0;
	margin: 0 0 0 0;
	}
.work-title h4.work-name {
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: 600;
	color: #000;
	padding: 1em 0 0.2em 0;
	margin: 0 0 0 0;
	}
h5.work-name {
	font-size: 0.9em;
	line-height: 1.3;
	font-weight: 600;
	color: #000;
	padding: 2.5em 0 0 0;
	margin: 0 0 0 0;
	}
h5.work-name + p {
	padding-top: 0.5em;
	}
.work-title p {
	text-align: start;
	text-justify: none;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.work-title p.work-credit {
	font-size: 0.6em;
	line-height: 1.3;
	padding: 0.5em 0 0 0;
	}
p.work-caption {
	font-size: 0.6em;
	line-height: 1.5;
	padding: 0.75em 0 0.5em 0;
	}
.work-title p.work-title {
	color: #000;
	font-size: 1em;
	line-height: 1.3;
	}
.work-title p.work-title span {
	font-size: 0.8em;
	}
.work-title p.work-place {
	font-size: 0.8em;
	line-height: 1.3;
	padding: 1em 0 0 0;
	}

a .work-title h4.work-name,
a .work-title p.work-title {
	color: #000;
	transition: color .3s ease;
	}
a:hover .work-title h4.work-name,
a:hover .work-title p.work-title {
	color: #c00;
	}

p.work-comment {
	font-size: 0.9em;
	padding: 1.5em 0 1em 0;
	margin: 0 0 0 0;
	}
p.work-comment + p.work-comment {
	font-size: 0.9em;
	padding: 0 0 1em 0;
	margin: 0 0 0 0;
	}

p.exhibition-comment {
	font-size: 0.68em;
	line-height: 1;
	text-align: right;
	padding: 0 0 1em 0;
	margin: 0 0 2em 0;
	border-bottom: 1px solid #666;
	}
p.exhibition-data-comment {
	font-size: 0.68em;
	line-height: 1;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}

dl.exhibition-data {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
dl.exhibition-data dt {
	font-size: 0.8em;
	line-height: 1.5;
	font-weight: 300;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
dl.exhibition-data dd {
	line-height: 1.5;
	padding: 0.2em 0 0.75em 0;
	margin: 0 0 0 0;
	}

ul.exhibition-link {
	font-size: 1em;
	line-height: 1;
	padding: 0.75em 0 0 0;
	}
ul.exhibition-link.toppadding {
	font-size: 1em;
	line-height: 1;
	padding: 2em 0 0 0;
	}
ul.exhibition-link li {
	padding: 1px 0 0.75em 1.25em;
	margin: 0 0 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 1em auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
ul.exhibition-link li span.s-size {
	font-size: 0.75em;
	}

dl.data-dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 0 1.5em 0;
	margin: 0 0 0 0;
	}
dl.data-dl dt {
	width: 3.2em;
	line-height: 1.5;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
dl.data-dl dd {
	width: calc(100% - 3.2em);
	line-height: 1.5;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
dl.data-dl.place {
	font-size: 0.8em;
	line-height: 1.3;
	padding: 1em 0 0 0;
	}
.data-all {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	}
.data-img {
	width: 30%;
	}
.data-txt {
	width: 70%;
	padding: 0 0 0 1em;
	}
.data-img img {
	width: 100%;
	height: auto;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}

.contents-text dl.data-dl2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	padding: 0 0 0 0;
	margin: -0.5em 0 0 0;
	}
.contents-text dl.data-dl2 dt {
	width: 100%;
	line-height: 1.5;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text dl.data-dl2 dd {
	width: 100%;
	line-height: 1.5;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}

.img-all {
	display: flex;
	align-items: flex-end;
	width: 100%;
	}
.img-out,
.img-out2 {
	width: 49%;
	height: 100%;
	margin: 0 1% 0 0;
	aspect-ratio: 3 / 2;
	}
.img-out.yoko,
.img-out2.yoko {
	width: 49%;
	height: 100%;
	margin: 0 1% 0 0;
	aspect-ratio: 2 / 1;
	}
.img-out.shino,
.img-out2.shino {
	width: 45.6%;
	height: 100%;
	margin: 0 1% 0 0;
	aspect-ratio: 42 / 30;
	}
.img-out.tall,
.img-out2.tall {
	width: 32.7%;
	aspect-ratio: 2 / 3;
	}
.img-out2.shinotall {
	width: 40%;
	height: 100%;
	margin: 0 1% 0 0;
	aspect-ratio: 40 / 49;
	}
.img-out2.shinotall2 {
	width: 35%;
	height: 100%;
	margin: 0 1% 0 0;
	aspect-ratio: 40 / 56;
	}
.img-out.square,
.img-out2.square {
	width: 49%;
	aspect-ratio: 1 / 1;
	}
.img-out.one,
.img-out2.one {
	width: 100%;
	margin: 0 0 0 0;
	aspect-ratio: auto;
	}
.img-out.oneimg,
.img-out2.oneimg {
	width: 64%;
	margin: 0.5em 0 0 0;
	aspect-ratio: auto;
	}
.img-out.oneimgt,
.img-out2.oneimgt {
	width: 42%;
	margin: 0.5em 0 0 0;
	aspect-ratio: auto;
	}
.artist-item .img-out.square {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	}
.artist-item .img-out.tall {
	width: 65.9%;
	aspect-ratio: 2 / 3;
	}
.img-out img,
.img-out2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom left;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}

.artist-wrapper-all {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	}
.artist-item {
	width: 48%;
	height: 100%;
	margin: 0 0 0 0;
	}
.artist-item.tsume {
	margin-top: -2em;
	}

/* - 各トピックス本文 -- */
/*   チェックリスト  */
img.check-img {
	width: 80px;
	height: auto;
	padding: 0 0 10px 0;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}
p#check-p {
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0 0 0 0;
	}
.br-sp {
	display: none;
	}

ul#check-li {
	padding: 0 0 0 0;
	}
ul#check-li li {
	padding: 3px 0 3px 0;
	}
ul#check-li li input[type="checkbox"] {
	display: none;
	}
ul#check-li li label {
	position: relative;
	display: inline-block;
	padding: 0 0 0 20px;
	cursor: pointer;
	transition: all .2s;
	}
ul#check-li li label::before,
ul#check-li li label::after {
	position: absolute;
	content: '';
	transition: all .2s;
	}
ul#check-li li label::before {
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	background-color: #efefef;
	border: 1px solid #00afec;
	border-radius: 3px;
	}
ul#check-li li label::after {
	opacity: 0;
	top: 6px;
	left: 3px;
	width: 9px;
	height: 6px;
	border-left: 2px solid #00afec;
	border-bottom: 2px solid #00afec;
	transform: rotate(-45deg) scale(.5);
	}
ul#check-li li label:hover::before {
	background-color: #fff;
	}
ul#check-li li input[type="checkbox"]:checked + label::before {
	background-color: #fff;
	border: 1px solid #00afec;
	}
ul#check-li li input[type="checkbox"]:checked + label::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
	}
/*   H3番号付き見出し  */
.contents-text h3 {
/* 	counter-increment: numeber; */
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 600;
	padding: 0 0 1.4rem 2.3rem;
	margin: 2.4rem 0 0 0;
	position: relative;
	}
.contents-text h3::before {
/* 	content: counters(numeber,""); */
	content: '';
	font-size: 1.4rem;
	line-height: 1.3;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 3px;
	left: 0;
	width: 1.7rem;
	height: 1.7rem;
	padding: 0 0 0 1px;
	margin: 0 0 0 0;
	background-color: #3d62ad;
	}
.contents-text h3:nth-child(2) {
	margin-top: 0;
	}
.contents-text h3 span {
	font-size: 1.2rem;
	line-height: 1.4;
	margin: 0.2rem 0 0 0;
	}
.contents-text h4 {
	font-size: 1.1em;
	line-height: 1.3;
	font-weight: 600;
	padding: 1.5em 0 0.5em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text h4:first-child {
	font-size: 1.1em;
	line-height: 1.3;
	font-weight: 600;
	padding: 0.5em 0 0.5em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text h4 .s-size {
	font-size: 0.8em;
	font-weight: 500;
	}
.contents-text h4 .m-size {
	font-size: 0.9em;
	font-weight: 500;
	}
.contents-text h5 {
	font-size: 1em;
	line-height: 1.3;
	font-weight: 500;
	padding: 0.5em 0 0.5em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text p.small {
	font-size: 0.9em;
	padding-top: 0.25em;
	padding-bottom: 0;
	}
.contents-text p.small .bold {
	display: inline-block;
	font-weight: 500;
	padding-bottom: 0.5em;
	}

/*   記号リスト */
.contents-text ul {
	padding: 0 0 0.5em 1.5em;
	margin: 0 0 0 0;
	list-style-type: disc;
	}
.contents-text p + ul {
	padding: 0 0 0.5em 1.5em;
	margin: -0.5em 0 0 0;
	list-style-type: disc;
	}
.contents-text ul li {
	padding: 0 0 0.5em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text ul li span {
	position: absolute;
	left: -1.5em;
	}

.contents-text ul.maru {
	padding: 0 0 0.5em 1.5em;
	margin: 0 0 0 0;
	list-style-type: none;
	}
.contents-text ul.maru li {
	padding: 0 0 0.5em 0;
	margin: 0 0 0 0;
	position: relative;
	}


/*   数字リスト */
.contents-text ol.number {
	padding: 0.5em 0 0 0;
	margin: 0 0 0 1.6em;
	list-style-type: decimal;
	}
.contents-text ol li ol.number li {
	padding: 0.5em 0 0 0;
	}
.contents-text ol.number > li::before {
	display: none;
	}

/*   引用 */
.contents-text blockquote {
	margin: 0 2.5em 0em 2.5em;
	}
.contents-text blockquote p {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text blockquote + figcaption {
	text-align: right;
	margin: 0 2.5em 0em 0em;
	}

/*   定義リスト */
.contents-text dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	line-height: 1.5;
	padding: 0 0 1em 0;
	margin: 0 0 0 0;
	}
.contents-text p + dl {
	margin: -0.5em 0 0 0;
	}
.contents-text dl dt {
	width: 3.2em;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text dl dd {
	width: calc(100% - 3.2em);
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text dl dt.three {
	width: 4.2em;
	}
.contents-text dl dd.three {
	width: calc(100% - 4.2em);
	}
.contents-text dl dt.four {
	width: 5.2em;
	}
.contents-text dl dd.four {
	width: calc(100% - 5.2em);
	}
.contents-text dl dt.six {
	width: 7.2em;
	}
.contents-text dl dd.six {
	width: calc(100% - 7.2em);
	}
.contents-text dl dt.ten {
	width: 100%;
	}
.contents-text dl dd.ten {
	width: 100%;
	padding-left: 3.2em;
	}
.contents-text dl dd span.s-size {
	font-size: 0.85em;
	}

.contents-text ul li dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	line-height: 1.5;
	padding: 0.25em 0 0.25em 0;
	margin: 0 0 0 0;
	}
.contents-text ul li p + dl {
	margin: -0.5em 0 0 0;
	}

/*   本文インデント */
.indent-p {
	margin: 0 0 0 1.6em !important;
	padding: 0 0 1.1em 0 !important;
	}
h5 + .indent-p {
	margin: -0.5em 0 0 1.6em !important;
	padding: 0 0 1.1em 0 !important;
	}
.indent-all {
	margin: 0 0 0 1.0em !important;
	}
/*   リンク */
.contents-text a, .read-p a {
	color: #60c4e2;
	font-weight: 600;
	}
.contents-text a:hover, .read-p a:hover {
	color: #00afec;
	text-decoration: none;
	}

/*   アンダーライン */
.contents-text span.underline, .read-p span.underline {
	text-decoration: underline;
	}
/*   テーブル */
.contents-text table {
	font-size: 1.2rem;
	width: 100%;
	padding: 0.5em 0 0.5em 0;
	margin: 0 0 1em 0;
	border-collapse: collapse;
	border-bottom: 1px solid #999;
	}
.contents-text table th, .contents-text table td {
	padding: 0.5em 0.25em 0.5em 0.25em;
	margin: 0 0 0 0;
	border-top: 1px solid #999;
	font-weight: 300;
	text-align: left;
	}
/*   画像 */
.contents-text img {
	width: 100%;
	height: auto;
	pointer-events: none;
	touch-callout: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	}
/*   画像ならび */
.contents-text .img-column-all {
	width: 100%;
	}
.contents-text .img-column {
	width: 100%;
	padding: 0 0 0 0;
	}

.contents-text .dl-flex {
	width: 100%;
	}
.contents-text .dt-flex {
	width: 100%;
	}
.contents-text .dd-flex {
	width: 100%;
	}

.contents-text .flex-all {
	width: 100%;
	display: flex;
	justify-content: space-between;
	}
.contents-text .flex-all2 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
.contents-text .flex-all3 {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	}
.contents-text .flex-talk-left {
	width: 18em;
	padding: 0 0 0.75em 1em;
	}
.contents-text .flex-talk-right {
	width: calc(100% - 18em);
	padding: 0 0 0.75em 0;
	}
.contents-text .flex-img {
	width: 48.4%;
	padding: 0.75em 0 1em 0;
	}
.contents-text .flex-img2 {
	width: 48.4%;
	padding: 0 0 1.5em 0;
	}
.contents-text .flex-img2-2 {
	width: 48.4%;
	padding: 0 0 1em 0;
	}
.contents-text .flex-img.tall {
	width: 35.46%;
	padding-right: 3.2%;
	}
.contents-text .flex-img2.tall {
	width: 35.46%;
	padding-right: 3.2%;
	}
.contents-text .flex-img3 {
	width: 48.4%;
	padding: 0 0 1.5em 0;
	}
.contents-text .flex-img4 {
	width: 100%;
	padding: 0 0 1.5em 0;
	}
.contents-text .flex-txt {
	width: 100%;
	padding: 0 0 0 0;
	}

.contents-text .top-p {
	padding-top: 0.5em;
	}

.talk-img img {
	width: 100%;
	max-height: 8em;
	object-fit: contain;
	object-position: top left;
	}
p.dl-p {
	padding: 0.5em 0 0.25em 0;
	}
p.dl-p span.s-size {
	font-size: 0.75em;
	display: block;
	margin-bottom: 0.2em;
	}
p.dl-p-caption {
	padding: 0.25em 0 0.5em 0;
	}

/*   キャプション */
.contents-text figure {
	width: 100%;
	padding: 0.75em 0 2.5em 0;
	margin: 0 0 0 0;
	}
.contents-text figcaption {
	padding: 1em 0 0.5em 0;
	margin: 0 0 0 0;
	font-size: 0.85em;
	line-height: 1.35;
	text-align: center;
	}


/* ---- レスポンシブ ---- */
/* - スマホ横（480px以上） -- */
@media screen and (min-width: 480px) {

}

/* - タブレット縦横（768px以上） -- */
@media screen and (min-width: 768px), print {

/* - TB ドロワーメニュー */
.overlay {
	left: 40px;
	}
.side-menu {
	left: 40px;
	width: 300px;
	padding: 0 0 0 0;
	}
.side-menu-btn {
	width: 40px;
	padding: 5px 10px 5px 10px;
	}

.btn-wrapper-all {
	top: calc(50vh - 9px);
	left: 10px;
	width: 20px;
	height: 18px;
	}
.btn-wrapper {
	width: 20px;
	height: 18px;
	}
.btn-wrapper .point {
	width: 20px;
	height: 2px;
	}
.side-open .top {
	width: 24px;
	}
.side-open .bot {
	width: 24px;
	}
.wrapper {
	width: calc(100% - 40px);
	padding: 0 0 0 0;
	margin: 0 0 0 40px;
	}

#footer-menu ul.footer-link-ul {
	font-size: 1.4rem;
	line-height: 1;
	padding: 1.4rem 1rem 1.4rem 1rem;
	}
#footer-menu ul.footer-link-ul li {
	padding: 1px 0 0 18px;
	margin: 1em 0 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 14px auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
#footer-menu ul.footer-link-ul li a {
	}
#footer-menu ul.footer-link-ul li a:hover {
	text-decoration: none;
	}

/* - TB 構造 -- */
.main-inner {
	padding: 5.6vw 6% 4% 4%;
	margin: 0 0 0 0;
	}
.checkarea-wrapper {
	padding: 4% 6% 4% 6%;
	margin: 0 0 0 0;
	background-color: #efefef;
	}

.all-div {
	position: relative;
	width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.left-div {
	width: 22%;
	padding: 0 0 0 0;
	margin: 0 2% 0 0;
	}
.left-div.subpage {
	text-align: center;
	}
.right-div {
	width: 74%;
	padding: 3.3vw 0 0 0;
	margin: 0 0 0 2%;
	}
/*      ロゴ -- */
.awg-all {
	display: flex;
	flex-direction: column;
	}
.awg-right {
	margin: 1.5em 0 0 0;
	align-self: auto;
	}
.awg-mark {
	width: 90%;
	max-width: 90%;
	height: auto;
	margin: 1.25em 0 3em 0;
	}
.logo-mark {
	width: 78px;
	height: auto;
	padding: 20px 0 0 0;
	}
.a-touch {
	display: block;
	}
h1 {
	font-size: 4vw;
	}
h1.aichi {
	font-size: 4vw;
	}
h1 span.chotai {
	font-size: 3.18vw;
	line-height: 1.3;
	display: block;
	}
h1.aichi span.chotai {
	font-size: 1.67vw;
	line-height: 1.8;
	display: block;
	}
h1 span.hoso {
	font-size: 3.23vw;
	}
h1 img {
	width: 80%;
	/* max-width: 65%; */
	height: auto;
	}
.all-div h1 img {
	width: 100%;
	height: auto;
	padding-top: 2%;
	}
.logo-gaw-en {
	width: 74%;
	height: auto;
	padding-top: 10px;
	}
.logo-navi {
	top: 5.6vw;
	}

/*      見出し -- */
header h2 {
	font-size: 2.0rem;
	line-height: 1.35;
	padding: 2.0rem 0 2.0rem 0;
	/* margin: 0 0 3.2rem 0; */
	margin: 0 0 0 0;
	border-bottom: 1px solid #666;
	}

/* - TB フッタ -- */
#footer {
	padding: 4% 6% 6% 4%;
	margin: 0 0 0 0;
	}
/*      ページトップへ */
.pagetop {
	bottom: 1%;
	right: 3%;
	}
/*      フッタメニュー */
.footer-link {
	padding: 0 0 1.4rem 0;
	}
.footer-link ul.footer-link-ul {
	display: flex;
	font-size: 1.2rem;
	}
.footer-link ul.footer-link-ul li {
	padding: 1px 0 0 16px;
	margin: 0 1.4rem 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 12px auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
.footer-link ul.footer-link-ul li a {
	}
.footer-link ul.footer-link-ul li a:hover {
	text-decoration: none;
	}
.footer-info {
	padding: 1.4rem 0 1rem 0;
	margin: 0 0 0 0;
	}
.footer-info img {
	width: 313px;
	margin: 0 0 0.6rem 0;
	}
.footer-info p {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	font-size: 1.0rem;
	line-height: 1.5;
	}
.footer-info p span.padding-r {
	display: inline;
	margin: 0 0.6em 0 0.1em;
	}

/*      コピーライト */
.footer-caption small {
	font-size: 1.0rem;
	margin: 0 0 0 0.1em;
	}
.footer-caption p {
	font-size: 1.0rem;
	}

/* - TB メイン -- */
.main-inner {
	display: flex;
	flex-direction: row;
	}
.checkarea-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	}

.language {
	right: 6%;
	}
.language a {
	font-size: 90%;
	padding: 0.5em 2.5em 0.5em 2.5em;
	}

/*      メインリスト -- */
.right-div ul.menu-list {
	padding: 0 0 0 0;
	margin: 0 0 4.8rem 0;
	}
.right-div ul.menu-list li a {
	padding: 2rem 1rem 2rem 0;
	}
h3.about-title {
	padding: 0.9vw 0 0.75em 0;
	}

/* - TB 作品リスト -- */
.data-img {
	width: 30%;
	}
.data-txt {
	width: 70%;
	padding: 0 0 0 2em;
	}

/* - TB 各トピックス本文 -- */
/*      チェックリスト  */
img.check-img {
	width: 84px;
	height: auto;
	padding: 0 0 12px 0;
	}
p#check-p {
	font-size: 1.2rem;
	line-height: 1.5;
	}
.br-sp {
	display: block;
	}
ul#check-li {
	padding: 0 0 0 0;
	}
ul#check-li li {
	padding: 4px 0 4px 0;
	}
ul#check-li li label {
	padding: 0 0 0 20px;
	}
ul#check-li li label::before {
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	}
ul#check-li li label::after {
	opacity: 0;
	top: 6px;
	left: 3px;
	width: 9px;
	height: 6px;
	}
/*      H3番号付き見出し  */
.contents-text h3 {
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 0 0 1.8rem 2.6rem;
	margin: 2.4rem 0 0 0;
	}
.contents-text h3::before {
	font-size: 1.5rem;
	line-height: 1.4;
	border-radius: 3px;
	top: 2px;
	left: 0;
	width: 2.0rem;
	height: 2.0rem;
	padding: 0 0 0 0px;
	margin: 0 0 0 0px;
	}
.contents-text h3 span {
	font-size: 1.2rem;
	line-height: 1.4;
	}



/*      テーブル */
.contents-text table {
	font-size: 1.4rem;
	}
/*      画像ならび */
.contents-text .img-column-all {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
.contents-text .img-column {
	width: 50%;
	padding: 0% 3% 0% 3%;
	}

.contents-text .dl-flex {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	}
.contents-text .dt-flex {
	width: 8.5em;
	}
.contents-text .dd-flex {
	width: calc(100% - 8.5em);
	}

.contents-text .flex-talk-left {
	width: 18em;
	padding: 0 0 0.75em 0;
	}
.contents-text .flex-talk-right {
	width: calc(100% - 20em);
	padding: 0 0 0.75em 0;
	}

.contents-text .flex-all4 {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	}
.contents-text .flex-txt {
	width: 48.4%;
	padding: 0 0 1.5em 0;
	}
.contents-text .flex-img2-2 {
	width: 48.4%;
	padding: 0 0 1.5em 0;
	}
.contents-text .flex-img3 {
	width: 31.1%;
	padding: 0 0 1.5em 0;
	}

p.dl-p {
	padding: 0.75em 0 0.25em 0;
	}

.contents-text dl dt.ten {
	width: 11.2em;
	}
.contents-text dl dd.ten {
	width: calc(100% - 11.2em);
	padding-left: 0;
	}
.contents-text dl dd span.s-size {
	font-size: 1em;
	}

/*      本文インデント */
.indent-p {
	margin: 0 0 0 1.6em !important;
	padding: 0 0 1.6em 0 !important;
	}
h5 + .indent-p {
	margin: -0.8em 0 0 1.6em !important;
	padding: 0 0 1.6em 0 !important;
	}
}

/* - PC（1025px以上） -- */
@media screen and (min-width: 1025px) {
body {
	font-size: 1.8rem;
	line-height: 1.8;
	}

/* - PC 構造 -- */
.main-inner {
	padding: 6vw 8% 4% 5%;
	margin: 0 0 0 0;
	}
.checkarea-wrapper {
	padding: 4% 8% 4% 8%;
	margin: 0 0 0 0;
	background-color: #efefef;
	}

.left-div {
	width: 23%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.right-div {
	width: 73%;
	padding: 3.8vw 0 0 0;
	margin: 0 0 0 4%;
	}
.language {
	right: 8%;
	}
.language a {
	font-size: 90%;
	}

/*      ロゴ -- */
.logo-mark {
	width: 100px;
	height: auto;
	padding: 20px 0 0 0;
	}
.logo-navi {
	top: 6vw;
	}
h1 {
	font-size: 4.1vw;
	}
h1.aichi {
	font-size: 4.1vw;
	}
h1 span.chotai {
	font-size: 3.27vw;
	line-height: 1.3;
	}
h1.aichi span.chotai {
	font-size: 1.73vw;
	line-height: 1.8;
	}
h1 span.hoso {
	font-size: 3.3vw;
	}
h1 img {
	width: 71%;
	/* max-width: 470px; */
	height: auto;
	}
.all-div h1 img {
	width: 100%;
	/* max-width: 100%; */
	height: auto;
	padding-top: 2%;
	}
.logo-gaw-en {
	width: 74%;
	height: auto;
	padding-top: 14px;
	}

/*      見出し -- */
header h2 {
	font-size: 2.4rem;
	line-height: 1.5;
	padding: 2.4rem 0 2.4rem 0;
	/* margin: 0 0 4.2rem 0; */
	margin: 0 0 0 0;
	border-bottom: 1px solid #666;
	}
header h2 span {
	display: block;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 0 0 0.25em 0;
	margin: 0 0 0 0;
	}

/* - PC フッタ -- */
#footer {
	padding: 4% 8% 6% 5%;
	margin: 0 0 0 0;
	}
/*      ページトップへ */
.pagetop {
	bottom: 2%;
	right: 3%;
	}
/*      フッタメニュー */
.footer-link {
	padding: 0 0 1.8rem 0;
	}
.footer-link ul.footer-link-ul {
	font-size: 1.4rem;
	}
.footer-link ul.footer-link-ul li {
	padding: 1px 0 0 18px;
	margin: 0 1.6rem 0 0;
	background-image: url("../img/li-mark.svg");
	background-size: 14px auto;
	background-repeat: no-repeat;
	background-position: 0 0;
	}
.footer-info {
	padding: 2% 0 3% 0;
	margin: 0 0 0 0;
	}
.footer-info img {
	margin: 0 0 1.0rem 0;
	}
.footer-info p {
	font-size: 1.2rem;
	}

/*      コピーライト */
.footer-caption small {
	font-size: 1.2rem;
	}
.footer-caption p {
	font-size: 1.2rem;
	}

/* - PC メイン -- */
/* -    メインリスト -- */
h3.about-title {
	padding: 0.8vw 0 0.75em 0;
	}

/* - PC 作品リスト -- */
ul.link-list li {
	width: 31%;
	}

/* - PC 各トピックス本文 -- */
/*      チェックリスト  */
img.check-img {
	width: 100px;
	height: auto;
	padding: 0 0 14px 0;
	}
p#check-p {
	font-size: 1.4rem;
	line-height: 1.65;
	}
ul#check-li {
	padding: 0 0 0 0;
	}
ul#check-li li {
	padding: 6px 0 6px 0;
	}
ul#check-li li label {
	padding: 0 0 0 24px;
	}
ul#check-li li label::before {
	top: 6px;
	left: 0;
	width: 17px;
	height: 17px;
	margin-top: 0;
	}
ul#check-li li label::after {
	opacity: 0;
	top: 10px;
	left: 3px;
	width: 11px;
	height: 6px;
	margin-top: 0;
	}
/*      H3番号付き見出し  */
.contents-text h3 {
	font-size: 1.8rem;
	line-height: 1.6;
	padding: 0 0 2.4rem 2.9rem;
	margin: 3.2rem 0 0 0;
	}
.contents-text h3::before {
	font-size: 1.7rem;
	line-height: 1.4;
	border-radius: 3px;
	top: 3px;
	left: 0;
	width: 2.3rem;
	height: 2.3rem;
	padding: 0 0 0 1px;
	margin: 0 0 0 0;
	}
.contents-text h3 span {
	font-size: 1.4rem;
	line-height: 1.6;
	}


/*      テーブル */
.contents-text figcaption {
	font-size: 0.9em;
	}

}

/* - PC-WIDE（1025px以上） -- */
@media screen and (min-width: 1600px) {
body {
	font-size: 2.2rem;
	line-height: 1.8;
	}
}

/* - 印刷用 -- */
@media print {
h1 {
	font-size: 2.2vw;
	}
h1.aichi {
	font-size: 2.2vw;
	}
h1 span.chotai {
	font-size: 1.77vw;
	line-height: 1.3;
	display: block;
	}
h1.aichi span.chotai {
	font-size: 0.92vw;
	line-height: 1.8;
	display: block;
	}
h1 span.hoso {
	font-size: 1.8vw;
	}
}