@charset "utf-8";

/*=========================*/
/* ■ 入門講座 共通 CSS ■ */
/*=========================*/

/* ■ Google Fonts ■

.noto-sans-jp-<uniquifier> {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}
	font-weight: 100; (Thin)
	font-weight: 200; (ExtraLight)
	font-weight: 300; (Light)
	font-weight: 400; (Regular)
	font-weight: 500; (Medium)
	font-weight: 600; (SemiBold)
	font-weight: 700; (Bold)
	font-weight: 800; (ExtraBold)
	font-weight: 900; (Black)

.noto-serif-jp-<uniquifier> {
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}
	font-weight: 200; (ExtraLight)
	font-weight: 300; (Light)
	font-weight: 400; (Regular)
	font-weight: 500; (Medium)
	font-weight: 600; (SemiBold)
	font-weight: 700; (Bold)
	font-weight: 800; (ExtraBold)
	font-weight: 900; (Black)

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* ■ 基本設定（個別調整は下記設定を再定義） ■ */
:root {
	--max-width: 1024px;				/* 最大横幅 */
	--background-color: #f8f8f8;		/* 背景色 */
	--base-color: steelblue;			/* 基本背景色 */
	--menu-color: #5594c9;				/* ポップアップメニュー背景色 */
	--current-menu-color: #99e9fb;		/* カレント文字色 */
	--anchor-color: #09659a;			/* アンカー背景色 */
	--section-color: #ffffff;			/* セクション背景色 */
	--article-color: #e6f4ff;			/* アーティクル背景色 */
	--button-color: #336699;			/* ボタン背景色 */
}

/* ■ RESET CSS ■ */
html {
	font-size: 16px;
}
@media screen and (max-width: 760px) {
	html {
		font-size: 15px;
	}
}
* {
	box-sizing: border-box;
}
body,h1,h2,h3,h4,h5,h6,article,section,header,footer,nav,aside,p,hr,ul,ol,li,dl,dt,dd,div,main,a,em,strong,small,i,b,spantable,caption,tr,th,td,pre,label,input,textarea,select {
	padding: 0;
	margin: 0;
	line-height: 1.6;
	word-wrap: break-word;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	background-color: var(--background-color);
}
ul,ol {
	margin-left: 20px;
}
a {
	text-decoration: none;
	color: var(--anchor-color);
}
a:hover {
	opacity: 0.6;
}
img {
	vertical-align: bottom;
}
img.img-fit {
	width: 100%;
}

/* ■ clearfix ■ */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* ■ リンク先 ■ */
div.link {
	margin-top: -95px;
	padding-bottom: 95px;
}
@media screen and (max-width: 760px) {
	div.link {
		margin-top: -5px;
		padding-bottom: 5px;
	}
}
.beginner img {
	width: 1em;
}

/* ■ スマホ制御 ■ */
.sp {
	display: none;
}
@media screen and (max-width: 760px) {
	.sp {
		display: inline;
	}
}
.ns {
	display: inline;
}
@media screen and (max-width: 760px) {
	.ns {
		display: none;
	}
}

/* ■ 表題 ■ */
h1 {
	max-width: var(--max-width);
	width: 100%;
	font-size: 2.0rem;
	padding: 20px 0px 0px 0px;
	margin: 0px auto 20px auto;
}
@media screen and (max-width: 1064px) {
	h1 {
		width: calc(100% - 20px);
	}
}
@media screen and (max-width: 960px) {
	h1 {
		font-size: 1.8rem;
		padding: 10px 0px 0px 0px;
	}
}
@media screen and (max-width: 760px) {
	h1 {
		font-size: 1.6rem;
	}
}
h2 {
	max-width: var(--max-width);
	width: 100%;
	font-size: 1.8rem;
	padding: 10px 0px 10px 20px;
	margin: 0px auto 20px auto;
	border: 1px #ccc solid;
	border-left: 20px #ccc solid;
	background-color: var(--section-color);
}
@media screen and (max-width: 1064px) {
	h2 {
		width: calc(100% - 20px);
	}
}
@media screen and (max-width: 960px) {
	h2 {
		font-size: 1.7rem;
		padding: 5px 0px 5px 20px;
	}
}
@media screen and (max-width: 760px) {
	h2 {
		font-size: 1.3rem;
		padding: 5px 0px 5px 10px;
	}
}
h3, .h3 {
	max-width: none;
	width: 100%;
	font-size: 1.4rem;
	padding: 0;
	margin: 0px 0px 20px 0px;
	border: none;
	background-color: transparent;
}
@media screen and (max-width: 760px) {
	h3, .h3 {
		font-size: 1.2rem;
	}
}
h4, .h4 {
	font-size: 1.2rem;
}
@media screen and (max-width: 760px) {
	h4, .h4 {
		font-size: 1.1rem;
	}
}
h4.sub {
	font-size: 1.0rem;
	font-weight: normal;
	margin: 0 0 0 20px;
}
h5, .h5 {
	font-size: 1.1rem;
}
@media screen and (max-width: 760px) {
	h5, .h5 {
		font-size: 1.0rem;
	}
}

/* ■ 外部フレーム ■ */
article, section.fr {
	max-width: var(--max-width);
	width:100%;
	margin: 0px auto 20px auto;
	padding: 20px;
	border: 1px #ccc solid;
	overflow: auto;
}
article {
	background-color: var(--article-color);
}
section.fr {
	background-color: var(--section-color);;
}
@media screen and (max-width: 1064px) {
	article, section.fr {
		width: calc(100% - 20px);
	}
}

/* ■ ワンポイント用フレーム ■ */
div.practics {
	padding: 20px;
	border: 5px cornflowerblue solid;
	border-radius: 10px;
	background: var(--article-color);
}

/* ■ 表示サンプル用フレーム ■ */
div.disp-sample {
	padding: 1em;
	border: 1px #ccc solid;
}
div.disp-sample article {
	max-width: none;
	width: auto;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}
div.disp-sample footer {
	max-width: none;
	width: auto;
	margin: 0;
	padding: 0;
}
div.disp-sample h1 {
	max-width: none;
	width: auto;
	font-size: 2em;
	padding: 0;
	margin: 0;
}
div.disp-sample p {
	margin: 1em 0;
}
div.disp-sample i {
	font-weight: normal;
	font-style: italic;
	color: #000;
}
div.disp-sample b {
	font-weight: bold;
	font-style: normal;
	color: #000;
}
div.disp-sample dd {
	margin-inline-start: 40px;
}
div.disp-sample input[type="button"] {
	padding: 1px 6px;
}
div.disp-sample input[type="checkbox"] {
	margin: 3px 3px 3px 4px;
}
div.disp-sample input[type="color"] {
	padding: 1px 2px;
}
div.disp-sample input[type="date"] {
	padding: 0px 0px 0px 1px;
}
div.disp-sample input[type="datetime-local"] {
	padding: 0px 0px 0px 1px;
}
div.disp-sample input[type="email"] {
	padding: 1px 2px;
}
div.disp-sample input[type="month"] {
	padding: 0px 0px 0px 1px;
}
div.disp-sample input[type="number"] {
	padding: 1px 2px;
}
div.disp-sample input[type="password"] {
	padding: 1px 2px;
}
div.disp-sample input[type="radio"] {
	margin: 3px 3px 3px 4px;
}
div.disp-sample input[type="range"] {
	margin: 3px 3px 0px 5px;
}
div.disp-sample input[type="reset"] {
	padding: 1px 6px;
}
div.disp-sample input[type="search"] {
	padding: 1px 2px;
}
div.disp-sample input[type="submit"] {
	padding: 1px 6px;
}
div.disp-sample input[type="text"] {
	padding: 1px 2px;
}
div.disp-sample input[type="url"] {
	padding: 1px 2px;
}
div.disp-sample details summary {
	font-size: initial;
	text-align: initial;
	padding: initial;
	margin: initial;
	color: initial;
	background-color: initial;
	border-radius: initial;
	box-shadow: initial;
}
div.disp-sample details summary:hover {
	cursor: initial;
	opacity: initial;
}

/* ■ 目次用のリスト ■ */
.index ul {
	list-style-type: none;
}
@media screen and (max-width: 760px) {
	.index ul {
		margin-left: 10px;
	}
}

/* ■ ボタン ■ */
p.sample-buttom {
	padding: 10px 20px;
	text-align: right;
}

span.button {
	display: inline-block;
	color: #ffffff;
	font-weight: bold;
	padding: 0.4rem 0.8rem 0.2rem 0.8rem;
	background-color: var(--base-color);
	border-radius: 1rem;
	box-shadow: 0.05rem 0.05rem #333;
}
span.button:hover {
	opacity: 0.6;
	cursor: pointer;
}

a.button {
	display: block;
	font-size: 1.2em;
	line-height: 2.6;
	text-align: center;
	padding: 0 1.5em;
	margin: 1em 0;
	color: #fff;
	background-color: var(--button-color);
	border-radius: 1.3em;
}
a.button:hover {
	cursor: pointer;
	opacity: 0.6;
}

/* ■ ファイルとフォルダの設定 ■ */
.folder-list ul {
	list-style-type: none;
	margin-left: 0;
	padding-left: 20px;
}
.folder-list li.folder {
	line-height: 1.2;
}
.folder-list li.folder:before {
	content: url('../images/icon-folder.png');
	display: inline-block;
	padding-right: 0.5rem;
	vertical-align: middle;
}
.folder-list li.file {
	line-height: 1.2;
}
.folder-list li.file:before {
	content: url('../images/icon-file.png');
	display: inline-block;
	padding-right: 0.5rem;
	vertical-align: middle;
}

/* ■ サンプルイメージ ■ */
.sample-image img {
	width: 128px;
	vertical-align: middle;
}

/* ■ ファイルとフォルダの設定（絵文字） ■ */
pre.folder {
	padding: 14px 30px;
	background: #eee;
}
pre.folder code {
	padding: 0;
	display: block;
	overflow: auto;
	font-size: 16px;
	tab-size: 4;
	line-height: 1;
}

/* ■ ソースコード表示 ■ */
details summary {
	font-size: 1.2em;
	text-align: center;
	padding: 0.5rem 1.5rem;
	margin: 1em 0;
	color: #fff;
	background-color: var(--base-color);
	border-radius: 1.3em;
	box-shadow: 0.05rem 0.05rem #333;
}
details.list summary {
    font-size: 1.0em;
    text-align: left;
    padding: 0;
    margin: 0;
    color: var(--base-color);
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}
details summary:hover {
	cursor: pointer;
	opacity: 0.6;
}
p[class*="label-"] {
	display: inline-block;
	line-height: 2;
	padding: 0 1.5em;
	margin: 0;
	color: #fff;
}
p.label-html {
	background-color: #0c92a5;
}
p.label-css {
	background-color: #07a056;
}
p.label-javascript {
	background-color: #d44747;
}
p.label-sample {
	 background-color: #d45603;
}
pre[class*="language-"] {
	margin: 0 0 16px 0;
	border-radius: 0;
}
.token.property, .token.tag, .token.constant, .token.symbol, .token.deleted {
	color: #62ffcc;
}
.token.comment, .token.prolog, .token.doctype, .token.cdata {
    color: #ffffff;
}
pre.html-css code {
	font-size: 1.0rem;
	padding-left: 1rem;
}
:not(pre) > code[class*="language-"], pre[class*="language-"] {
	background: #444738;
}

/* ■ 説明オープンボタン ■ */
.details-open {
	font-size: 1.2em;
	text-align: center;
	padding: 0.5rem 1.5rem;
	margin: 1em 0;
	color: #fff;
	background-color: var(--base-color);
	border-radius: 1.3em;
	box-shadow: 0.05rem 0.05rem #333;
}
.details-open:hover {
	opacity: 0.6;
	cursor: pointer;
}
.details-open::before {
	content: "▲";
	display: inline-block;
	font-size: 65%;
	transform: rotate(90deg);
	position: relative;
	top: -2px;
	left: -8px;
}
.details-open.open::before {
	transform: rotate(180deg);
}

/* ■ PPTページ画像表示 ■ */
.page {
	width: 100%;
	border: #ccc 1px solid;
}
.page img {
	width: 100%;
}

/* ■ 段落 ■ */
.para {
	margin-left: 1rem;
}

/* ■ 段落の下部の行空け ■ */
.lf {
	margin-bottom: 16px;
}

/* ■ 説明リスト ■ */
.desc > dt {
	font-weight: bold;
}
.desc > dt:before {
	content: "・";
}
.desc > dd {
	margin-left: 1rem;
}
.desc000 > dt {
	font-weight: bold;
}
.desc000 > dd {
	margin-left: 1rem;
}
.desc400, .desc350, .desc300, .desc250, .desc200, .desc150, .desc100 {
	overflow: hidden;
}
.desc400 > dt, .desc350 > dt, .desc300 > dt, .desc250 > dt, .desc200 > dt, .desc150 > dt, .desc100 > dt {
	float: left;
	font-weight: bold;
}
.desc400 > dt:before, .desc350 > dt:before, .desc300 > dt:before, .desc250 > dt:before, .desc200 > dt:before, .desc150 > dt:before, .desc100 > dt:before {
	content: "　";
}
.desc400 > dd {
	margin-left: 400px;
}
.desc350 > dd {
	margin-left: 350px;
}
.desc300 > dd {
	margin-left: 300px;
}
.desc250 > dd {
	margin-left: 250px;
}
.desc200 > dd {
	margin-left: 200px;
}
.desc150 > dd {
	margin-left: 150px;
}
.desc100 > dd {
	margin-left: 100px;
}
@media screen and (max-width: 760px) {
	.desc400 > dt, .desc350 > dt, .desc300 > dt, .desc250 > dt, .desc200 > dt, .desc150 > dt, .desc100 > dt {
		float: none;
	}
	.desc400 > dt:before, .desc350 > dt:before, .desc300 > dt:before, .desc250 > dt:before, .desc200 > dt:before, .desc150 > dt:before, .desc100 > dt:before {
		content: "・";
	}
	.desc400 > dd, .desc350 > dd, .desc300 > dd, .desc250 > dd, .desc200 > dd, .desc150 > dd, .desc100 > dd {
		margin-left: 1rem;
	}
}

/* ■ 赤丸字付き箇条書 ■ */
ol.number {
	margin-bottom: 20px;
	counter-reset: n 0;
}
ol.number li{
	position: relative;
	padding-left: 1.8em;
	list-style-type: none;
}
ol.number li:before {
	content: "";
	display: block;
	width: 1.4em;
	height: 1.4em;
	position: absolute;
	top: 0.1em;
	left: -0.3em;
	background: red;
	border-radius: 50%;
}
ol.number li:after {
	counter-increment: n 1;
	content: counter(n);
	display: block;
	width: 1.4em;
	height: 1.4em;
	position: absolute;
	top: 0em;
	left: -0.3em;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

/* ■ 文字飾り ■ */
b {
	font-weight: bold;
	font-style: normal;
}
i {
	font-weight: normal;
	font-style: italic;
	color: #00f;
}
.red {
	color: red;
}
.green {
	color: green;
}
.blue {
	color: blue;
}
.caution {
	color: red;
}

/* ■ ページ下部に空白確保 ■ */
.last-space {
	height: 400px;
}

/* フレームのレイアウト */
iframe {
	width: 100%;
	border: #ccc 0px solid;
}
iframe.border {
	border: #ccc 1px solid;
}
div.border {
	border: #ccc 1px solid;
}

/*==================*/
/* ■ ヘッダー部 ■ */
/*==================*/

/* ■ header ■ */
header {
	background-color: var(--base-color);
}
header div {
	max-width: var(--max-width);
	margin: 0 auto;
	overflow: hidden;
}
@media screen and (max-width: 1064px) {
	header div {
		width: calc(100% - 20px);
	}
}
header p.top-name {
	width: 610px;
	font-size: 2.9rem;
	font-weight: bold;
	padding: 10px 0px 0px 20px;
	color: #fff;
	float: left;
}
@media screen and (max-width: 760px) {
	header p.top-name {
		width: 100%;
		font-size: 2.2rem;
		text-align: center;
		padding: 20px 0px 0px 0px;
		float: none;
	}
}
header p.top-name a {
	display: block;
	color: #fff;
	line-height: 1.4;
}
@media screen and (max-width: 320px) {
	header p.top-name {
		font-size: 1.8rem;
	}
}
header div.lesson {
	width: 100px;
	margin: 0 10px 0 0;
	float: right;
}
@media screen and (max-width: 760px) {
	header div.lesson {
		width: calc(100% - 20px);
		margin: 0 auto;
		float: none;
	}
}
header p.lesson-hamaya {
	width: 100%;
	line-height: 0;
}
@media screen and (max-width: 760px) {
	header p.lesson-hamaya {
		display: none;
	}
}
header p.lesson-hamaya a {
	display: block;
}
header p.lesson-hamaya img {
	width: 68px;
	padding: 6px 0 6px 0;
	vertical-align: bottom;
	position: relative;
	left: 0px;
	animation-name: hamaya-key;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes hamaya-key {
	0% {
		left: 0px;
		transform: rotate(-10deg);
	}
	100% {
		left: calc(100% - 68px);
		transform: rotate(10deg);
	}
}
header div.message {
	width: 100px;
	padding: 10px 0;
	margin: 20px 10px 0 0;
	float: right;
	font-size: 0.7rem;
	text-align: center;
	background: var(--section-color);
	border-radius: 20px;
	position: relative;
	overflow: initial;
}
@media screen and (max-width: 760px) {
	header div.message {
		display: none;
	}
}
header div.message::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 18px solid white;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	display: block;
	position: absolute;
	right: -14px;
	top: 8px;
}

/*==================*/
/* ■ メニュー部 ■ */
/*==================*/

/* ■ ドロップダウンメニュー ■ */
nav {
	background-color: var(--base-color);
}
nav.pc-menu-wrapper {
	position: sticky;
	top: 0;
	z-index: 10;
}
@media screen and (max-width: 760px) {
	nav.pc-menu-wrapper {
		position: static;
	}
}
nav ul {								/* 親メニュー枠 */
	max-width: var(--max-width);
	margin: 0 auto;
	color: #fff;
	text-align: center;
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 10px 0 10px 0;
}
@media screen and (max-width: 1064px) {
	nav ul {
		width: calc(100% - 20px);
	}
}
nav ul li {								/* 親メニュー項目枠 */
	width: calc(100% / 3);
	position: relative;
	background-color: var(--base-color);
	border-left: 1px #fff solid;
	border-top: 1px #fff solid;
	border-bottom: 1px #fff solid;
}
nav ul li:last-child {					/* 親メニュー項目枠（最後） */
	border-right: 1px #fff solid;
}
nav ul li.pc-menu-child::before {		/* 親メニュー項目枠（下位メニューあり） */
	content: '';
	position: absolute;
	left: 20px;
	top: 26px;
	z-index: 10;
	width: 10px;
	height: 10px;
	border-top:  2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(135deg);
}
nav ul li a:hover {						/* 親メニュー項目枠（オンマウス） */
	color: #ccc;
}
nav ul li a {
	display: block;						/* 親メニュー文字 */
	text-decoration: none;
	color:  #fff;
	padding: 8px 0;
	font-weight: bold;
	transition:all 0.3s;
}
nav ul li a.checked {					/* 親メニュー文字（現在） */
	color: var(--current-menu-color);
}
nav ul li ul {							/* 子メニュー枠 */
	display: none;
	width: 370px;
	height: calc(100svh - 80px);
    overflow: auto;
    padding: 0;
	position: absolute;
	left: 0;
	top: 66px;
	z-index: 10;
	transition: all .3s;
}
nav ul li:last-child ul {				/* 子メニュー枠（最後の子メニュー） */
	left: auto;
	right: 0;
}
nav ul li.pc-menu-child:hover > ul,		/* 子メニュー、孫メニュー（オンマウス、アクティブ） */
nav ul li.pc-menu-child ul li:hover > ul,
nav ul li.pc-menu-child:active > ul,
nav ul li.pc-menu-child ul li:active > ul {
	display: block;
}
nav ul li ul li {						/* 子メニュー項目枠 */
	width: 100%;
	background: var(--menu-color);
	border-left: none;
	border-right: none;
	border-bottom: none;
}
nav ul li ul li:last-child {			/* 子メニュー項目枠（最後） */
	border-right: none;
}
nav ul li ul li a {						/* 子メニュー文字 */
	text-align: left;
	padding: 6px 0 6px 40px;
	color: #fff;
	font-weight: normal;
}
nav ul li ul li a.checked {				/* 子メニュー文字（現在） */
	color: var(--current-menu-color);
}
nav ul li.pc-menu-child ul li.pc-menu-child::before {
										/* 子メニュー項目枠（下位メニューあり） */
	content: '';
	position: absolute;
	left: 14px;
	top: 16px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right:2px solid #fff;
	transform: rotate(45deg);
}
nav ul li ul li ul {					/* 孫メニュー枠 */
	left: 100%;
	top: -1px;
}
nav ul li ul li ul li {					/* 孫メニュー項目枠 */
	background: var(--menu-color);
	border-left: #fff 1px solid;
}
nav ul li ul li ul li a.checked {		/* 孫メニュー項目枠（現在） */
	color: ver(--current-menu-color);
}

/* ■ ドロップダウンメニュー（縦メニュー設定） ■ */
@media screen and (max-width:760px) {
	nav {
		padding: 0;
	}
	nav ul {							/* 親メニュー枠 */
		display: block;
	}
	nav ul li {							/* 親メニュー項目枠 */
		width: 100%;
		border-right: #fff 1px solid;
		border-bottom: none;
	}
	nav ul li:last-child {				/* 親メニュー項目枠（最後） */
		border-bottom: #fff 1px solid;
	}
	nav ul li.pc-menu-child::before {	/* 親メニュー項目枠（下位メニューあり） */
		top: 12px;
	}
	nav ul li ul li ul li {				/* 孫メニュー項目枠 */
		border-left: none;
	}
	nav ul li ul,						/* 子メニュー、孫メニュー枠 */
	nav ul li ul li ul {
		position: relative;
		left: 0;
		top: 0;
		font-size: 14px;
		width: 100%;
		height: auto;
		visibility: visible;
		opacity: 1;
		display: none;
		transition: none;
		padding-bottom: 0px;
	}
	nav ul li ul li:last-child,			/* 子メニュー、孫メニュー項目枠（最後） */
	nav ul li ul li ul li:last-child {
		border-bottom: none;
	}
	nav ul li.pc-menu-child::before,	/* 親メニュー、子メニュー項目枠（下位メニューあり） */
	nav ul li.pc-menu-child ul li.child::before {
		transform: rotate(135deg);		/* 下矢印 */
		left: 20px;
	}
	nav ul li.active::before,			/* 親メニュー、子メニュー項目枠（アクティブ） */
	nav ul li.pc-menu-child ul li.pc-menu-child.active::before {
		transform: rotate(-45deg);		/* 上矢印 */
	}
}
@media screen and (max-width:320px) {
	nav ul li ul,
	nav ul li ul li ul {
		font-size: 12px;
	}
}

/* ■ ハンバーガーメニュー ■ */
.humburger ul {
	margin-left: 0;
}
.hamburger-menu {
	display: none;						/* 初期状態で非表示にする時はnone */
}
@media screen and (max-width: 760px) {	/* ★ハンバーメニューに切り替え幅 */
	.hamburger-menu {
		display: block;					/* 760px未満：表示 */
	}
}
.menu-btn {								/* ボタン領域を右上に作成 */
    position: fixed;
    top: 10px;							/* ★ボタンの位置 */
    right: 10px;						/* ★ボタンの位置 */
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(0,0,0,0.3);	/* ☆ボタン領域の背景色 */
	cursor: pointer;
	border-radius: 10px;
}
.menu-btn span,							/* ボタンの3本線を作成 */
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #fff;				/* ☆3本線の色 */
    position: absolute;
}
.menu-btn span:before {
    bottom: 10px;						/* 上の線は上方向に10px移動 */
}
.menu-btn span:after {
    top: 10px;							/* 下の線は下方向に10px移動 */
}
#menu-btn-check:checked ~ .menu-btn span {
										/* ボタンクリック時：真ん中の線は非表示（透過） */
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
										/* ボタンクリック時：上の線を斜めに（／） */
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
										/* ボタンクリック時：下の線を斜めに（＼） */
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {						/* メニューの状態を保持するチェックボックスは非表示 */
    display: none;
}
.menu-content {							/* ■コンテンツ領域（全体）■ */
	width: 100%;
	height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(0,0,0,0.8);
    transition: all 0.5s;
}
										/* コンテンツ領域（ボタン押下時） */
#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
.tabs {									/* タブ領域枠 */
	max-width: var(--max-width);
	margin: 70px auto 0 auto;
	border: 2px #fff solid;
	overflow: hidden;
}
@media screen and (max-width: 1064px) {
	.tabs {
		width: calc(100% - 20px);
	}
}
.tabs .tab-item {						/* タブ項目枠 */
	display: block;
	width: calc(100% / 3);
	padding: 10px 0;
	font-size: 15px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	transition: all 0.2s ease;
	float: left;
	border-left: #fff 1px solid;
	border-bottom: #fff 2px solid;
	background: var(--base-color);
}
.tabs label:nth-child(2) {				/* タブ項目枠（先頭タブ） */
	border-left: none;
}
@media screen and (max-width: 760px) {
	.tabs .tab-item {
		font-size: 14px;
	}
}
@media screen and (max-width: 320px) {
	.tabs .tab-item {
		font-size: 10px;
	}
}
.tabs .tab-item:hover {
	background: rgba(255,255,255,0.4);
}
input[name="tab-item"] {
	display: none;
}
.tabs input:checked + .tab-item {		/* タブ項目枠（チェック時） */
	color: var(--current-menu-color);
}
.tab-content {							/* メニュー領域枠 */
	display: none;
	height: calc(100vh - 180px);
	padding: 20px;
	overflow: auto;
	background: var(--base-color);
}
@media screen and (max-width: 760px) {
	.tab-content {
		height: calc(100vh - 145px);
	}
}
.tab-content-description ul {			/* メニュー項目枠 */
	padding-left: 20px;
	color: #fff;
}
.tab-content-description ul li {		/* メニュー項目 */
	padding: 4px 0px;
}
@media screen and (max-width: 320px) {
	.tab-content-description ul li {
		padding: 5px 0px;
	}
}
.tab-content-description ul li a {		/* メニュー文字列 */
	color: #fff;
}
.tab-content-description ul li a.checked {
	color: var(--current-menu-color);
}
@media screen and (max-width: 760px) {
	.tab-content-description ul li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 320px) {
	.tab-content-description ul li a {
		font-size: 11px;
	}
}
										/* メニュー領域枠表示（チェック時） */
#tab-item-01:checked ~ #tab-content-01,
#tab-item-02:checked ~ #tab-content-02,
#tab-item-03:checked ~ #tab-content-03,
#tab-item-04:checked ~ #tab-content-04 {
	display: block;
}

/*========================*/
/* ■ パンくずリスト部 ■ */
/*========================*/

@media screen and (max-width: 760px) {
	.breadcrumb {
		display: none;
	}
}
.breadcrumb ol {
	padding: 6px 0 15px 0;
	max-width: var(--max-width);
	margin: 0 auto;
	color: #fff;
	list-style-type: none;
}
.breadcrumb ol li {
	padding-left: 0;
	color: var(--current-menu-color);
	display: inline-block;
}
.breadcrumb ol li::before {
	content: ">";
	padding: 0 0.5em;
	color: #fff;
}
.breadcrumb li:first-child::before {
	content: "";
}
.breadcrumb ol li a {
	color: #fff;
	text-decoration: none;
}

/*==================*/
/* ■ フッター部 ■ */
/*==================*/

/* ■ footer ■ */
footer {
	padding-top: 20px;
	padding-bottom: 20px;
	max-width: var(--max-width);
	margin: auto;
}
@media screen and (max-width: 1064px) {
	footer {
		width: calc(100% - 20px);
	}
}
footer p {
	width: 100%;
	text-align: center;
	border-top: 2px #ccc solid;
	border-bottom: 2px #ccc solid;
}
footer p small {
	font-size: 1rem;
	line-height: 4rem;
}
@media screen and (max-width: 760px) {
	footer p small {
		font-size: 0.7rem;
		line-height: 4rem;
	}
}
@media screen and (max-width: 320px) {
	footer p small {
		font-size: 0.6rem;
	}
}

/*============================*/
/* ■ ページトップ（▲）部 ■ */
/*============================*/

#page-top {											/* トップに戻るボタン領域 */
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 50;
	opacity: 0;
	transform: translateY(100px);					/* ウィンドウの枠外に隠しておく */
}
#page-top a:hover{
	opacity: 0.6;
}
#page-top a.rocket-wrapper {						/* ロケット枠領域 */
	display: block;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}
#page-top div img,
#page-top a.rocket-wrapper div img {
	width: 60px;
	vertical-align: top;
}
#page-top div.rocket-flame {						/* 炎（最初は非表示） */
	display: none;
}
#page-top a.rocket-wrapper div.arrow {				/* 'TOP PAGE'文字 */
	position: absolute;
	right: 14px;
	bottom: 9px;
	font-size: 12px;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}
#page-top.move-up {									/* 上に上がる動き */
	animation: anime-up 0.5s forwards;
}
@keyframes anime-up {
	from {
		opacity: 0;
		transform: translateY(160px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#page-top.move-down {								/* 下に下がる動き */
	animation: anime-down 0.5s forwards;
}
@keyframes anime-down {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(160px);
	}
}
#page-top.rocket-launch {							/* ロケット打ち上げ */
	animation: anime-launch 1s forwards ease-in;
}
@keyframes anime-launch {
	from {
		opacity: 1;
		bottom: 71px;
	}
	to {
		opacity: 0;
		bottom: calc(100vh + 100px);
	}
}
#page-top.rocket-launch div.rocket-flame {			/* 炎を表示 */
	display: block;
}

