@charset "shift-jis";
/* CSS Document */
.guide-page *,
.guide-page *::before,
.guide-page *::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
.guide-page {
	font-family: "メイリオ","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro", Helvetica, "HelveticaNeue", Verdana, sans-serif;
	text-align: center;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 12px;
	font-size: 0.9rem;
	/* line-height: 1.4; */
	color: #000;
	background-color: #FFFFFF;
}

/* -------------------------------------- 共通コンポーネント -------------------------------------------- */
/* ----------------▼ ページタイトル（h1） ▼---------------- */
.page-title {
	text-align: center;
	font-size: 1.25rem;
	padding-top: 0.5em;
	line-height: 1.4;
	word-break: keep-all;
	overflow-wrap: anywhere;
	/* 画面幅まで広げる */
	/* margin: 0 calc(50% - 50vw); */
}
.page-title .small {
	font-size: 0.7em;
}
.page-header-area h1 {
	text-align: center;
	font-size: 1.25rem;
	padding-top: 0.5em;
	line-height: 1.4;
	word-break: keep-all;
	overflow-wrap: anywhere;
	/* 画面幅まで広げる */
	/* margin: 0 calc(50% - 50vw); */
}
.page-header-area h1 .small {
	font-size: 0.7em;
}

/* ----------------▼ 中見出し（タイトル） ▼---------------- */
.section-title {
	text-align: left;
	font-size: 1.05rem;
	line-height: 2;
	background-color: #bbbbbb;
	color: #000;
	width: 100vw;
   	margin: 0 calc(50% - 50vw);
	padding-left: 12px;
	box-sizing: border-box;
}
/* ----------------▼ 小見出し（タイトル） ▼---------------- */
.section-sub-title {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #000;
}
.section-sub-title::before {
	content: "\25A0";
}

/* ----------------▼ テキストエリア ▼---------------- */
.guide-text-block {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #000;
}
.guide-text-block a {
	color: #000;
	text-decoration: underline;
}

/* ----------------▼ テキスト ▼---------------- */
/* .guide-text {

} */
.guide-text-list {
	font-size: 0.9rem;
    line-height: 1.4;
    list-style: none;
	text-align: left;
}
.guide-text-list-item {
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
.guide-text-list-item::marker {
	font-size: 0.75rem;
}
.guide-text-block .caution,
.guide-text .caution {
	color: #da0000;
}
/* ----------------▼ 注釈 ▼---------------- */
.note-list{
	font-size: 0.75rem;
	line-height: 1.4;
    list-style: none;
	text-align: left;
}
.note-list-item{
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.note-mark {
	font-size: 0.7em;
	vertical-align: top;
}
/* ----------------▼ テキストエリア（枠あり） ▼---------------- */
.infomation-block {
	border: 1px solid #999;
}
.infomation-title {
	text-align: left;
	padding-left: 12px;
	color: #FFFFFF;
	font-size: 0.9rem;
    line-height: 1.6;
	font-weight: bold;
	background-color: #636363;
}
.infomation-inner {
	text-align: left;
	font-size: 0.9rem;
	padding: 8px;
	line-height: 1.4;
}
.infomation-list-item {
    list-style-type: disc;
	list-style-position: inside;
	margin-left: 1.3em;
	text-indent: -1.3em;
	margin-top: 0.3em;
}
.infomation-list-item::marker {
	font-size: 0.75rem;
}
.infomation-text {
	margin-top: 4px;
}
/* ----------------▼ 番号付き（自動カウント） ▼---------------- */
/*----タイトル・テキスト----*/
.numbered-wrapper {
	counter-reset: count; 
	text-align: left;
}
.numbered-item {
	text-align: inherit;
	color: inherit; 
	padding-left: 24px;
	position: relative;
}
.guide-page .numbered-item::before {
	position: absolute;
	top: 0;
	left: 0;
	counter-increment: count 1;
	content: counter(count, decimal) ".";    
}
/*----規約用リスト（番号付きリスト:ol）----*/
/* 第一階層　primary 1. */
.numbered-list-primary {
	text-align: left;
	margin-left: 1.5em;
	counter-reset: primary; /* カウンターを更新 */
}
.numbered-list-primary > li {
	margin-top: 8px;
	position: relative;
	counter-increment: primary 1; /* 増加数 */
}
.numbered-list-primary > li::before {
	position: absolute;
	right: calc(100% + 0.5rem);
	content: counter(primary, decimal) '. ';
}

/* 第二階層 secondary (1) */
.numbered-list-secondary {
	text-align: left;
	margin-left: 1.5em;
	counter-reset: secondary; /* カウンターを更新 */
}
.numbered-list-secondary > li {
	margin-top: 8px;
	position: relative;
	counter-increment: secondary 1; /* 増加数 */
}
.numbered-list-secondary > li::before {
	position: absolute;
	right: calc(100% + 0.5rem);
	content: '('counter(secondary, decimal) ') ';
}
/* ----------------▼ テーブル ▼---------------- */
.table-block {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}
/* 項目 */
.table-header {
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	color: #FFF;
	background-color: #636363;
	border: 1px solid #999;
}
/* データ */
.table-data {
	text-align: left;
	vertical-align: middle;
	padding: 0 6px;
	border: 1px solid #999;
}
/* 装飾 */
.table-block .caution {
	color: #da0000;
}
.table-block .right-alignment {
	text-align: right;
}
/* ----------------▼ 画像 ▼---------------- */
.image-block {
	max-width: 640px;
	margin: 0 auto;
}
.image-block img {
	width: 100%;
	height: auto;
}
/* ----------------▼ 動画 ▼---------------- */
.movie-block {
	display: block;
	height: 330px;
	margin: 0 auto;
	max-width: 347px;
	max-height: 330px;
	text-align: center;
}
  .movie-block iframe {
  	display: block;
	width:100%;
	height: 100%;
	max-height: 330px;
	aspect-ratio: 1/1;
}
/* ----------------▼ 導線ボタン ▼---------------- */
.link-button>a {
	text-decoration: none;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
	align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	position: relative;
	font-size: 0.9rem;
	width: 100%;
	max-width: 640px;
	height: 100%;
	min-height: 3rem;
	padding: 0 14px;
	padding-right: 2em;
	margin: 0 auto;
	color: #000;
    border-radius: 8px;
	box-sizing: border-box;
	line-height: 1.5em;
}

.link-button.primary-next>a {
    border: 1px solid #000;
	background-color: #FFFFFF;
}
.link-button.secondary-next>a {
    border: 1px solid #2a9716;
	background-color: #f4fceb;
}
.link-button.primary-back>a {
    border: 1px solid #000;
	background-color: #ebebeb;
}
/* 削除予定 */
.link-button.next>a {
    border: 1px solid #2a9716;
	background-color: #f4fceb;
}
/* 削除予定 */
.link-button.back>a {
    border: 1px solid #000;
	background-color: #ebebeb;
}

/* -----右向き矢印（primary nextボタン）------*/
.link-button.primary-next .link-button-arrow::before,
.link-button.primary-next .link-button-arrow::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s ease-in;
}
/* 位置調整 */
/* 矢印1 */
.link-button.primary-next .link-button-arrow::before {
	right: 14px;
}
/* 矢印2 */
.link-button.primary-next .link-button-arrow::after {
	right: 18px;
}

/* -----右向き矢印（secondary nextボタン ※強調用）------*/
.link-button.secondary-next .link-button-arrow::before,
.link-button.secondary-next .link-button-arrow::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #2a9716;
	border-right: 1px solid #2a9716;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s ease-in;
}
/* 位置調整 */
/* 矢印1 */
.link-button.secondary-next .link-button-arrow::before {
	right: 14px;
}
/* 矢印2 */
.link-button.secondary-next .link-button-arrow::after {
	right: 18px;
}

/* -----左向き矢印（primary-backボタン）------*/
.link-button.primary-back .link-button-arrow::before,
.link-button.primary-back .link-button-arrow::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) rotate(-135deg);
	transition: all 0.2s ease-in;
}
/* 位置調整 */
/* 矢印1 */
.link-button.primary-back .link-button-arrow::before {
	left: 14px;
}
/* 矢印2 */
.link-button.primary-back .link-button-arrow::after {
	left: 18px;
}

/* アンカーボタン */
.link-button.primary-anchor>a {
	border: 1px solid #000;
	background-color: #FFFFFF;
}
/* 矢印1 */
.link-button.primary-anchor .link-button-arrow::after {
	position: absolute;
	top: 48%;
	right: 18px;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) rotate(135deg);
	transition: all 0.2s ease-in;
}

/* -----右向き矢印（nextボタン ※※削除予定※※）------*/
.link-button.next .link-button-arrow::before,
.link-button.next .link-button-arrow::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 1px solid #2a9716;
	border-right: 1px solid #2a9716;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.2s ease-in;
}
/* 位置調整 */
/* 矢印1 */
.link-button.next .link-button-arrow::before {
	right: 14px;
}
/* 矢印2 */
.link-button.next .link-button-arrow::after {
	right: 18px;
}

/* -----左向き矢印（backボタン※※削除予定※※）------*/
.link-button.back .link-button-arrow::before,
.link-button.back .link-button-arrow::after {
	position: absolute;
	top: 50%;
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) rotate(-135deg);
	transition: all 0.2s ease-in;
}
/* 位置調整 */
/* 矢印1 */
.link-button.back .link-button-arrow::before {
	left: 14px;
}
/* 矢印2 */
.link-button.back .link-button-arrow::after {
	left: 18px;
}
/* ※※削除予定※※ */

/* ----------------▼ ツリーリスト ▼---------------- */
/* 上層ラベル */
.tree-list-item {
	padding: 10px 10% 10px 10px;
    font-size: 1.05rem;
	border-bottom: 1px solid #d5d5d5;
	box-sizing: border-box;
	word-break: keep-all;
}
/* 中層ラベル */
.article-list-item {
	font-weight: normal;
	color: #000;
	font-size: 0.9rem;
	position: relative;
    padding: 10px 10% 10px 10px;
	background-color: #f5f2f2;
	word-break: keep-all;
}
/* ラベルの下線 */
.article-list-item::before {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 95%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
	background: #d5d5d5;
}
.article-list-title {
	font-weight: normal;
}
.article-list-item a {
	color: #000;
	text-decoration: none;
	font-size: 0.9rem;
}

/* 矢印アイコン（導線用／ベース） */
.article-list-item .arrow-icon::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 35%;
	right: 20px;
	width: 1em;
	height: 1em;
	border-top: 4px solid #999;
	border-right: 4px solid #999;
	transform: rotate(45deg);
	box-sizing: border-box;
}
/* 矢印アイコン（アコーディオン用） */
.article-list-item.accordion-button .arrow-icon::after {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
	transition: transform 0.3s;
}
/* 矢印アイコン（アコーディオン用：展開時） */
.article-list-item.accordion-button.shown .arrow-icon::after {
	transform: translate(-50%, -50%) rotate(315deg);
    -webkit-transform: rotate(315deg);
}
/* プラスアイコン（ベース） */
.accordion-block .toggle-icon {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 48%;
	right: -2px;
	transform: translate(-50%, -50%);
	width: 1.5em;
	height: 1.5em;
	box-sizing: border-box;
	/* 丸背景用 */
	/* background: #ea0000;
	border-radius: 100%; */
}
.accordion-button .toggle-icon::before,
.accordion-button .toggle-icon::after  {
    content: '';
    display: inline-block;
    width: 75%;
    height: 4px;
    background-color: #999;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.accordion-button .toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s;
}
/* プラスアイコン（展開時） */
.accordion-button.shown .toggle-icon::before {
    opacity: 0;
}
.accordion-button.shown .toggle-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* -----アコーディオン------*/
.accordion-block {
	text-align: left;
}
/* 中身をデフォルト非表示 */
.accordion-inner {
	display: none;
}
.accordion-button {
	position: relative;
}

/* ----------------▼ 上へボタン ▼---------------- */
#page_top.hidden {
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
}
#page_top.show {
	visibility: visible;
	opacity: 1;
}