@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=IBM+Plex+Sans+JP:wght@300;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-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: bold;
	}
span.ruby {
	font-size: 75%;
	}
img {
	line-height: 0;
	vertical-align: bottom;
	}
/*   見出しリセット */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	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::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content:"";
	background: linear-gradient(45deg,
		#00afec,
		#00afec 46%,
		#fff 46%,
		#fff 50%,
		#00afec 50%,
		#00afec 96%,
		#fff 96%,
		#fff
		);
	background-size: 13px 13px;
	opacity: 0;
	transition: all .3s ease;
	} */
	/* .side-menu-btn:hover::before {
	opacity: 1;
	} */

.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;
	}
.side-open .side-menu-btn {
	}
.side-open .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; */
	}

.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-family: 'Oswald', sans-serif;
	font-size: 1em;
	line-height: 1.35;
	font-weight: normal;
	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 0 0;
	margin: 4em 0 0 0;
	}

.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%;
	}
h1 {
	/* border-bottom: 2px solid #666; */
	font-family: 'Oswald', sans-serif;
	font-weight: bold;
	color: #000;
	font-size: 2.8em;
	line-height: 1.1;
	}
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;

	}


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: bold;
	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-family: 'Oswald', sans-serif;
	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,
h3.list-title {
	padding: 0 0 1em 0;
	margin: 0 0 0 0;
	font-size: 1.6rem;
	border-bottom: 1px solid #666;
	}

.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-family: 'Oswald', sans-serif;
	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.2em;
	line-height: 1.3;
	font-weight: bold;
	padding: 0.4em 0 0.2em 0;
	margin: 0 0 0 0;
	}
.work-title h4.work-name {
	font-size: 1.2em;
	line-height: 1.3;
	font-weight: bold;
	color: #000;
	padding: 0.9em 0 0.2em 0;
	margin: 0 0 0 0;
	}
.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.2;
	padding: 0.5em 0 0 0;
	}
.work-title p.work-title {
	color: #000;
	font-size: 0.9em;
	line-height: 1.3;
	}
.work-title p.work-place {
	font-size: 0.7em;
	line-height: 1.3;
	padding: 1.5em 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.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: bold;
	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: 2em 0 0 0;
	}
ul.exhibition-link li {
	padding: 1px 0 0 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;
	}

/* - 各トピックス本文 -- */
/*   チェックリスト  */
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 {
	/* counter-reset: numeber; */
	}
.contents-text h3 {
/* 	counter-increment: numeber; */
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: bold;
	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.6rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 0 1.4rem 0;
	margin: 2.4rem 0 0 0;
	position: relative;
	}
.contents-text h5 {
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: normal;
	padding: 0.8rem 0 0.7rem 0;
	margin: 0 0 0 0;
	position: relative;
	}


/*   記号リスト */
/* .contents-text ul {
	padding: 0 0 0 0;
	margin: 0 0 0 1.6em;
	}
.contents-text ul > li {
	padding: 0 0 1.6em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text ul > li::before {
	padding: 0 0 0 0;
	margin: 0 0 0 -1.6em;
	width: 1.6em;
	} */

.contents-text ul {
	padding: 0 0 0 3em;
	margin: 0 0 0 0;
	}
.contents-text ul li {
	padding: 0 0 1.6em 0;
	margin: 0 0 0 0;
	position: relative;
	}
.contents-text ul li span {
	position: absolute;
	left: -1.5em;
	}


/* .contents-text ul.star {
	font-size: 0.9em;
	}
.contents-text ul.star > li::before {
	content: "☆";
	}
.contents-text ul.kome {
	font-size: 0.9em;
	}
.contents-text ul.kome > li::before {
	content: "※";
	} */
/*   丸リスト */
.contents-text ul.maru {
	margin: 0 0 0 1.6em;
	padding: 0.5em 0 0 0;
	list-style-type: disc;
	}
.contents-text ol li ul.maru li {
	padding: 0.5em 0 0 0;
	}
.contents-text ul.maru > li::before {
	display: none;
	}
.indent-li {
	margin: 0 0 0 3.2em !important;
	padding: 0 0 1.1em 0 !important;
	}
.indent-li li {
	padding: 0 0 0.5em 0 !important;
	}
/*   （数字）リスト */
.contents-text ol {
	padding: 0 0 0 0;
	margin: 0 0 0 1.6em;
	counter-reset: cnt;
	}
.contents-text ol > li {
	padding: 0 0 1.6em 0;
	margin: 0 0 0 0;
	text-align: justify;
	text-justify: inter-ideograph;
	}
.contents-text ol > li::before {
	padding: 0 0 0 0;
	margin: 0 0 0 -1.6em;
	counter-increment: cnt;
	content: "(" counter(cnt) ") ";
	display: inline-block;
	text-align: center;
	font-weight: bold;
	width: 1.6em;
	}
.contents-text ol li ul {
	padding: 1.6em 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ol li ul li:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ul li ol {
	padding: 1.6em 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ul li ol li:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ol li ol {
	padding: 1.6em 0 0 0;
	}
.contents-text ol li ol li:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ul li ul {
	padding: 1.6em 0 0 0;
	}
.contents-text ul li ul li:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
/*   数字リスト */
.contents-text ol.number {
	margin: 0 0 0 1.6em;
	padding: 0.5em 0 0 0;
	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;
	}
/*   （abc）リスト */
.contents-text ol.abc {
	padding: 0 0 0 0;
	margin: 0 0 0 1.6em;
	counter-reset: alphabet;
	}
.contents-text ol.abc > li {
	padding: 0 0 1.6em 0;
	margin: 0 0 0 0;
	text-align: justify;
	text-justify: inter-ideograph;
	}
.contents-text ol.abc > li::before {
	padding: 0 0 0 0;
	margin: 0 0 0 -1.6em;
	counter-increment: alphabet;
	content: "(" counter(alphabet, lower-latin) ") ";
	display: inline-block;
	text-align: center;
	width: 1.6em;
	}
.contents-text ul li ol.abc {
	padding: 1.6em 0 0 0;
	margin: 0 0 0 0;
	}
.contents-text ul li ol.abc li:last-child {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	}
/*   引用 */
.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 {
	padding: 0 0 0 1em;
	margin: 0 0 0 0;
	}
.contents-text dl dt {
	font-weight: bold;
	padding: 0 0 0.5em 0;
	margin: 0 0 0 0;
	}
.contents-text dl dd {
	padding: 0 0 1.6em 2em;
	margin: 0 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: bold;
	}
.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: normal;
	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 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: 7% 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: 4.9vw 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 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;
	}

/*      見出し -- */
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;
	}


/* - TB 作品リスト -- */


/* - 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%;
	}
/*      本文インデント */
.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: 8% 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: 6.27vw 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: 9%;
	}
h1 {
	font-size: 4.2vw;
	}
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 メイン -- */
/* -    メインリスト -- */
h2.topic-title,
h3.list-title {
	font-size: 1em;
	}


/* - 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 h4 {
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 0 1.4rem 0;
	margin: 2.4rem 0 0 0;
	position: relative;
	}
.contents-text h5 {
	font-size: 1.6rem;
	line-height: 1.4;
	line-height: 1.4;
	padding: 0 0 0.7rem 0;
	margin: 0 0 0 0;
	position: relative;
	}

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

}

/* - PC-WIDE（1025px以上） -- */
@media screen and (min-width: 1600px) {
}

/* - 印刷用 -- */
@media print {
}