@charset "UTF-8";
/*ページ全体-----------------------------------------------------*/
html {
	scroll-behavior: smooth;
}
body {
	color: #333; /*テキストの色*/
	font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; /*テキストフォント*/
	font-size: 16px; /*フォントサイズ*/
	line-height: 1.8; /*テキストの高さ*/
	background-color: #ddd; /*背景色*/
}
p {
	margin-top: 0;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	/*ヘッダー、本文、フッター*/
	height: 100%;
	min-height: 100vh;
	position: relative;
	padding-bottom: 150px;
}
#main {
	/*本文全体*/
	max-width: 1024px;
	min-height: 100vh;
	padding-bottom: 30px;
	margin: 0 auto;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}
/*リンク--------------------------------------------*/
a {
	color: #0073cd;
	text-decoration: none;
}
a:hover {
	color: #4c9ddc;
	text-decoration: underline;
}
/*-------------------------------------------------*/
/*ヘッダー領域-----------------------------------------------------*/
/*ヘッダー全体*/
.header-wrapper {
	background-color: #0073cd;
	box-shadow: 0 2px 3px #004881;
	width: 100%;
	height: 50px;
	z-index: 10;
	position: relative;
}
/*ヘッダーコンテンツ領域*/
.header-inner {
	max-width: 1024px;
	height: 100%;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
/*ヘッダーロゴ*/
.header-logo {
	width: 100px;
	margin-left: 15px;
	margin-right: 5px;
}
/*マニュアルタイトル*/
.manual-title {
	color: #fff;
	font-size: 16px;
	padding-top: 0.1em;
}
.manual-title > a {
	color: #fff;
}
.manual-title > a:hover {
	color: #fff;
	text-decoration: none;
}
/*サイドバー表示---------------------------------------*/
#sidebar {
	flex: 1;
	padding: 15px 15px 0;
	margin: 0 auto;
	z-index: 10;
}
#sidebar-inner {
	position: sticky;
	top: 20px;
}
#sidebar-content {
	background-color: #607382;
	padding: 20px 0;
	z-index: 20;
}
#sidebar-content > ul {
	margin: 20px 12px;
	padding: 0;
}
#sidebar-content ul li {
	margin: 15px 0;
	padding: 5px 0;
	list-style: none;
	position: relative;
	border-bottom: dashed 1px #abb7c1;
}
#sidebar-content ul li:last-child {
	border-bottom: none;
}
#sidebar-content a {
	display: block;
	color: #fff;
	font-size: 14px;
}
#sidebar-content a:hover {
	font-weight: bold;
	text-decoration: none;
}
#sidebar-content a.current-page {
	font-weight: bold;
	position: relative;
}
#sidebar-content a.current-page::before {
	content: '';
	display: inline-block;
	position: absolute;
	border-left: solid 3px #abb7c1;
	height: 100%;
	top: -2px;
	left: -8px;
	border-radius: 5px;
}

/*アコーディオンメニュー（サイドバー）--------------------*/
.accordion {
	position: relative;
}

.accordion::before {
	content: '';
	position: absolute;
	bottom: 15px;
	right: 5px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.accordion:hover::before {
	display: none;
}

.accordion-submenu {
	position: absolute;
	top: -15px;
	z-index: -10;
	width: 450px;
	padding-left: 220px;
	background-color: #728797;
}

.accordion-submenu > ul {
	margin: 0 12px;
}

.accordion-submenu li a::before {
	content: '';
	position: absolute;
	top: 16px;
	left: -25px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	/* border-right: 2px solid #fff; */
	/* transform: rotate(45deg); */
}

.js-accordion.is-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: -12px;
	width: 12px;
	height: 130%;
}

.js-accordion-submenu {
	opacity: 0;
	visibility: hidden;
}

.js-accordion-submenu.is-active {
	opacity: 1;
	visibility: visible;
}

/**本文**
----------------------------------------------------------------*/
.content-wrapper {
	width: 760px;
	position: relative;
	background-color: #fff;
	margin: 0 auto;
	padding: 15px 15px 0;
}
/*各ページのタイトル領域（pagetitle-wrapper）------------*/
.pagetitle-wrapper {
	margin-bottom: 25px;
	padding: 5px;
	border-bottom: 5px solid #adb3b6;
}
/*ページのカテゴリー*/
.category {
	font-weight: bold;
	color: #3f4b55;
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
	margin: 0 5px 5px;
	border: 1px solid #3f4b55;
	border-radius: 3px;
}
/*ページタイトル*/
.toc-level2 {
	font-size: 1.25em;
	color: #3f4b55;
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 0 auto;
	text-align: center;
	line-height: 1.5;
	max-width: 90%;
}
/*TOPページタイトル*/
.toppage-cover {
	padding-top: 40px;
}
.toppage-title {
	font-size: 3em;
	margin-bottom: 30px;
}
.toppage-cover img {
	display: block;
	/* margin: 0; */
	max-width: 85%;
	margin: 0 auto 30px;
}
.note-toppage-text {
	/*お買い上げいただきありがとうございました*/
	text-align: center;
	font-size: 1.1em;
}
/*---------------------（pagetitle-wrapper）ここまで*/
/*本文領域----------------------------------------------*/
.content-inner {
	max-width: 95%;
	margin: 0 auto 3.75em;
}
/*セクション*/
.section {
	margin: 0 auto 60px;
}
.section-title {
	font-weight: bold;
	margin-left: 0px;
	font-size: 18px;
}
/*ページサブタイトル*/
.toc-level3 {
	font-size: 20px;
	padding: 10px;
	line-height: 1.5;
	border-left: solid 4px #0073cd;
	border-bottom: solid 1px #0073cd;
}
.box {
	border: #0073cd solid 2px;
	border-radius: 15px;
	font-size: 100%;
	padding: 15px;
	width: 90%;
	margin: 0 auto;
}
.content-inner ul {
	padding-inline-start: 30px;
}
/*手順------------------------------------------*/
.steps ol {
	counter-reset: number;
	padding-inline-start: 5px;
}
.step {
	border-left: 30px solid #0073cd;
	margin: 0 0 30px;
	padding: 3px 0;
}
.step-inner {
	padding: 0 20px;
}
.step-inner > li {
	position: relative;
	list-style: none;
}
.step-inner > li::before {
	counter-increment: number;
	content: counter(number);
	position: absolute;
	width: 30px;
	text-align: center;
	color: #fff;
	left: -50px;
}
.step-inner .fig {
	margin-bottom: 0.5em;
}
.cmd,
.info,
.stepresult {
	margin-bottom: 0.5em;
	line-height: 1.5;
}
.step-choice {
	padding: 10px 0 0 10px;
}
.choice-title {
	font-weight: bold;
	color: #3f4b55;
}
.substeps {
	padding-left: 20px;
	margin-bottom: 0.5em;
}
/*表------------------------------------------*/
.table-wrapper {
	margin-bottom: 2em;
}
.table-title {
	font-weight: bold;
	white-space: nowrap;
	margin-bottom: 5px;
}
.table-note {
	margin-left: 1.25em;
}
.table-wrapper .fn {
	font-size: 0.88em;
	padding-left: 1em;
}
/*表（タイプ1）-------------------------------*/
.table-type1 {
	/*表全体*/
	margin: 0 auto 1em;
	display: block;
}
.tbody-type1 {
	width: 100%;
	display: table;
}
.tr-type1 {
	display: block;
	margin-bottom: 15px;
	border: solid 1px #ddd;
}
.tr-type1:last-child {
	margin-bottom: 0;
}
.td-type1 {
	/*表のセル*/
	padding: 5px 15px;
	display: list-item;
	/* border: none; */
	border: solid 1px #ddd;
	overflow: auto;
}
.td-type1:first-child {
	background-color: #eee;
}
/*表（タイプ2）-------------------------------*/
.table-type2 {
	/*表全体*/
	margin: 0 auto 1em;
	display: block;
}
.tbody-type2 {
	width: 100%;
	display: table;
}
.tr-type2 {
	/* display: block; */
	margin-bottom: 10px;
	border-bottom: solid 2px #ddd;
	vertical-align: middle;
}
.td-type2 {
	padding: 10px 15px;
	width: 150px;
}
.td-type2-1 {
	padding: 0px 15px;
}
/*表（タイプ3）-------------------------------*/
.table-type3 {
	/*表全体*/
	margin: 0 auto 1em;
	display: block;
}
.tbody-type3 {
	width: 100%;
	display: table;
}
.tr-type3 {
	display: block;
	margin-bottom: 15px;
	border-bottom: solid 2px #ddd;
}
.tr-type3:last-child {
	margin-bottom: 0;
	border-bottom: none;
}
.tbody-type2 tr:last-child {
	border-bottom: none;
}
.td-type3 {
	display: list-item;
	list-style: none;
	/* border: none; */
	text-align: center;
	line-height: 1.5;
	padding: 5px 0;
}

/*表（タイプ4）-------------------------------*/
.table-type4 {
	/*表全体*/
	margin: 0 auto 1em;
	display: block;
	font-size: 14px;
}
.tbody-type4 {
	width: 100%;
	display: table;
}
.tr-type4 {
	margin-bottom: 10px;
	border: solid 2px #ddd;
	text-align: center;
	font-weight: bold;
	background-color: #eeeeee;
}
.tr-type4-1 {
	margin-bottom: 10px;
	border: solid 2px #ddd;
}
.td-type4 {
	width: 90px;
	padding: 2px 10px;
	border: solid 2px #ddd;
}

.td-type4-1 {
	width: 300px;
	padding: 0px 10px;
	border: solid 2px #ddd;
}

.td-type4-2 {
	width: 110px;
	padding: 0px 10px;
	border: solid 2px #ddd;
}

/*表（タイプ5）-------------------------------*/
.table-type5 {
	/*表全体*/
	margin: 0 auto 1em;
	display: block;
}
.tbody-type5 {
	width: 100%;
	display: table;
}
.tr-type5 {
	display: block;
	margin-bottom: 15px;
	border: solid 1px #eee;
}
.tr-type5:last-child {
	margin-bottom: 0;
}
.td-type5 {
	/*表のセル*/
	padding: 5px 15px;
	display: list-item;
	/* border: none; */
	border: solid 1px #eee;
	overflow: auto;
}

/*ExpandPanel------------------------------------------*/
input[type='checkbox'].ExpandCheckBox {
	display: none;
}
input[type='checkbox'].ExpandCheckBox + div.panel {
	display: none;
}
input[type='checkbox'].ExpandCheckBox:checked + div.panel {
	display: block;
}
/*NOTE------------------------------------------*/
.note {
	/*NOTE領域*/
	margin-bottom: 1em;
	padding: 15px;
}
.note-title {
	/*NOTEタイトル*/
	display: inline-block;
	font-weight: bold;
	margin-bottom: 5px;
	padding: 2px 15px;
	color: #fff;
}
.note-toppage-title {
	margin: 0;
	padding: 20px;
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}
/*NOTE（MEMO）*/
.note-remember {
	background-color: #f3f3f3;
}
.note-remember .note-title {
	background-color: #607382;
	border-radius: 20px;
}
/*NOTE（重要）*/
.note-notice {
	background-color: #f3f3f3;
}
.note-notice .note-title {
	background-color: #607382;
	border-radius: 3px;
}
/*NOTE（警告）*/
.note-warning {
	background-color: #fce3e3;
}
.note-warning img {
	/*NOTEタイトル（警告）のイラスト*/
	margin: 0;
	height: 1.3em;
}
.note-text {
	padding-left: 1em;
	margin-bottom: 0.5em;
}
/*テキストの見た目カスタマイズ*/
.red {
	/*本文テキスト（赤）*/
	font-weight: bold;
	color: #ff363a;
}
.asterisk {
	margin-left: 1rem;
}
.asterisk::before {
	content: '※';
	margin-left: -0.5rem;
}
.fig .fn {
	margin-left: 20px;
	font-size: 14px;
}

/*シンタックスハイライト--------------------*/
pre {
	font-weight: bold;
	color: #ff363a;
	white-space: pre-wrap;
}
/*--------------------------------------------------------------*/
/*ページリンク----------------------------------------------------*/
.pagelink {
	/*ページリンク領域*/
	/* padding-top: 20px; */
	padding-bottom: 60px;
	overflow: hidden;
	display: block;
}
.pagelink .start {
	/*ページリンク領域（トップページ）*/
	margin: 0 auto;
	width: 60px;
}
.pagelink ul {
	/*ページリンクのリスト*/
	margin: 0 auto;
	padding-inline-start: 0px;
	max-width: 80%;
	display: flex;
	justify-content: space-between;
}
.pagelink li {
	/*ページリンクのリスト*/
	width: 60px;
}
.pagination-previous,
.pagination-next {
	/*前後ページへのリンク*/
	overflow: hidden;
}
/*----------------------------------------------本文領域ここまで*/
/*--------------------------------------------------------------*/
/*フッター領域-----------------------------------------------------*/
.footer-wrapper {
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 150px;
	background-color: #3f4b55;
	color: #fff;
	font-size: 14px;
	z-index: 15;
}
.footer-inner {
	max-width: 1024px;
	margin: 0 auto;
	padding: 20px 0 0;
}
.footer-inner ul {
	padding-inline-start: 0px;
	margin: 0 auto;
	list-style: none;
	display: flex;
	justify-content: space-between;
}
.footer-inner ul li {
	margin: 0;
	padding: 3px;
}
.footer-right {
	text-align: right;
}
.copyright {
	margin-top: 30px;
	text-align: center;
}
.footer-right a {
	color: #fff;
}
/*ページトップリンクのボタン--------------------*/
#page-top {
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
#page-top.show {
	visibility: visible;
	opacity: 1;
}
#btn-page-top {
	position: fixed;
	bottom: 100px;
	right: 40px;
	background-color: #607382;
	width: 56px;
	height: 56px;
	border: solid 1px #607382;
	border-radius: 30%;
	transition: all 0.3s 0s ease-out;
}
#btn-page-top::after {
	border: solid 1px #fff;
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	top: 2px;
	left: 2px;
	border-radius: 30%;
}
#btn-page-top-inner {
	content: '';
	position: absolute;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	width: 20px;
	height: 20px;
	top: 22px;
	left: 17px;
	transform: rotate(-45deg);
}
#page-top-inner a {
	display: block;
}
#btn-page-top:hover {
	background-color: #728797;
	border: solid 1px #728797;
}

/*参考用動画--------------------*/
#movie {
	position: sticky;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	z-index: 10;
}
#btn-movie {
	position: relative;
	padding: 5px 40px;
	background-color: #fff;
	color: #df5656;
	border: solid 1px #df5656;
	border-radius: 5px;
	transition: all 0.3s 0s ease-out;
	box-shadow: 0px 0px 5px #df5656;
	opacity: 0;
	visibility: hidden;
}
#btn-movie.show {
	opacity: 1;
	visibility: visible;
}
#btn-movie span {
	padding: 0 0 0 15px;
}
#btn-movie img.active {
	position: absolute;
	top: 5px;
	left: 40px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s 0s ease-out;
}
#btn-movie:hover {
	background-color: #df5656;
	color: #fff;
}
#btn-movie:hover img.active {
	opacity: 1;
	visibility: visible;
}
#js-screen {
	position: fixed;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s 0s ease-out;
}
#js-screen.show {
	opacity: 1;
	visibility: visible;
}
#js-movie-wrapper {
	margin: 70px auto;
	max-width: 560px;
}
#js-movie {
	position: relative;
	max-width: 100%;
	padding-bottom: 56.25%;
}
#js-movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#js-close {
	background-color: #333;
	text-align: center;
	padding: 2px 0;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s 0s ease-out;
}
#js-close:hover {
	background-color: #444;
}
/*スプラッシュ--------------------*/
#js-splash {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}
#js-splash-frame {
	padding: 10px;
	z-index: 110;
}
#js-splash-logo {
	transition: all 3s 0s ease-out;
	opacity: 0;
	visibility: hidden;
}
#js-splash-msg {
	margin-top: 30px;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 28px;
	padding-bottom: 30px;
}
#js-splash-msg,
#js-splash-msg span {
	opacity: 0;
}
#js-splash-line {
	margin: 0 auto;
	width: 10px;
	border-bottom: solid 1px #fff;
	transition: all 1s 0s ease-out;
	opacity: 0;
	visibility: hidden;
}
#js-splash-btn {
	position: relative;
	width: 120px;
	margin: 40px auto;
	text-align: center;
	padding: 5px 20px;
	border: solid 1px #fff;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	transition: all 1s 0s ease-out;
	opacity: 0;
	visibility: hidden;
}
#js-splash-upper {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	background-color: #0073cd;
}
#js-splash-lower {
	position: fixed;
	width: 100vw;
	height: 100vh;
	bottom: 0;
	background-color: #0073cd;
}
/*スプラッシュ（アニメーション）--------------------*/
#js-splash.hidden,
#js-splash-frame.hidden {
	display: none;
}
#js-splash-logo.is-active,
#js-splash-msg.is-active,
#js-splash-line.is-active,
#js-splash-btn.is-active {
	opacity: 1;
	visibility: visible;
}
#js-splash-msg.is-active span {
	animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#js-splash-line.is-active {
	width: 50px;
}
#js-splash-btn:hover {
	color: #0073cd;
	border-color: #0073cd;
	background-color: #fff;
}
#js-splash-upper.is-active {
	animation-name: PageAnimeUpper;
	animation-duration: 1.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	transform: scaleY(1);
}
@keyframes PageAnimeUpper {
	0% {
		transform-origin: top;
		transform: scaleY(1);
	}
	100% {
		transform-origin: top;
		transform: scaleY(0);
	}
}
#js-splash-lower.is-active {
	animation-name: PageAnimeLower;
	animation-duration: 1.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	transform: scaleY(1);
}
@keyframes PageAnimeLower {
	0% {
		transform-origin: bottom;
		transform: scaleY(1);
	}
	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}
/*レスポンシブ用--------------------*/
#menu-btn-check,
.menu-btn {
	display: none;
}
/*--------------------------------------------------------------*/
/*以下レスポンシブ--------------------------------------------*/
@media only screen and (max-width: 1024px) {
	/*全体レイアウト--------------------*/
	#wrapper {
		padding-top: 50px;
	}
	.header-wrapper {
		position: fixed;
		top: 0;
		transition: all 0.5s 0s;
	}
	#js-header.unpinned {
		transform: translateY(-150%);
	}
	/*ハンバーガーメニュー--------------------*/
	#sidebar {
		position: fixed;
		margin: 0;
		background-color: #607382;
		top: 0;
		width: 70%;
		height: 100%;
		right: -100%;
		z-index: 20;
		transition-duration: 0.5s;
		overflow-y: scroll;
	}
	.menu-btn {
		position: fixed;
		top: 16px;
		right: 12px;
		display: flex;
		height: 40px;
		width: 40px;
		justify-content: center;
		align-items: center;
		z-index: 30;
		transition: all 0.5s 0s;
	}
	.menu-btn.unpinned {
		transform: translateY(-150%);
	}
	.menu-btn span {
		content: '';
		display: block;
		height: 2px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
		transition: 0.5s;
	}
	.menu-btn span:nth-of-type(1) {
		top: 0;
	}
	.menu-btn span:nth-of-type(2) {
		top: 8px;
	}
	.menu-btn span:nth-of-type(3) {
		top: 16px;
	}
	/*ハンバーガーメニュー（アクティブ時）--*/
	#menu-btn-check:checked ~ #sidebar {
		right: 0;
	}
	#menu-btn-check:checked ~ .menu-btn span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span:nth-of-type(2) {
		opacity: 0;
	}
	#menu-btn-check:checked ~ .menu-btn span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}

	/*アコーディオンメニュー（サイドバー子階層リスト）--*/
	.accordion::before {
		display: none;
	}

	.accordion-submenu {
		position: static;
		width: 100%;
		padding-left: 0px;
		background-color: #607382;
		opacity: 1;
		visibility: visible;
	}

	.accordion-submenu > ul {
		margin: 0px;
	}

	/*table--------------------*/
	.tbody-type2 tr {
		display: block;
		margin-bottom: 10px;
		border-bottom: solid 2px #ddd;
	}
	.tbody-type2 tr:last-child {
		border-bottom: none;
	}
	.td-type2 {
		display: list-item;
		list-style: none;
	}

	.scroll {
		display: block;
		max-width: calc(100vw - 100px);
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	/*参考用動画--------------------*/
	#movie {
		width: 100%;
		margin: 0 auto;
		bottom: 16px;
		left: 0;
	}
	#btn-movie {
		padding: 0 20px;
	}
	#btn-movie img.active {
		top: 0;
		left: 20px;
	}
	/*footer--------------------*/
	.footer-inner ul {
		display: block;
		text-align: center;
	}
	.footer-right {
		text-align: center;
	}
	.copyright {
		margin-top: 6px;
	}
	#btn-page-top {
		bottom: 70px;
		right: 20px;
		width: 48px;
		height: 48px;
	}
	#btn-page-top::after {
		width: 42px;
		height: 42px;
	}
	#btn-page-top-inner {
		width: 14px;
		height: 14px;
		top: 20px;
		left: 16px;
	}
}
