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


/*=========================================================
*
*	Tag resetting
*
=========================================================*/

* { margin: 0; padding: 0;}
*,
*::after,
*::before {
	box-sizing: border-box;
	}


/* ============================================ */
/* Root Element  */
/* ============================================ */
section {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	}
article {
	max-width: 1024px;
	margin: 0 auto;
	padding: 1rem 1rem 5rem;
	line-hight: 1.8;
	}
/*[ Media Query ] --------------------------- */
@media screen and (max-width: 1023.9px) {
	article {
		width: 98vw;
		margin: 1rem auto;
		}
	}



/* ============================================ */
/* Heading contents */
/* ============================================ */
h1,
h2,
h3,
h4,
h5 {
	font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'メイリオ', 'Meiryo', 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin: 3rem 0 2rem;
	line-height: 1.2;
	}

h1 {font-size: 3.4rem;}
h2 {font-size: 3.0rem;}
h3 {font-size: 2.6rem;}
h4 {font-size: 2.2rem;}
h5 {font-size: 1.8rem;}

h1#topHeading {
	font-weight: 500;
	margin: 4rem auto 3rem;
	padding: 0 1rem;
	text-align: center;
	}
h2.sectionTitle {
	max-width: 1024px;
	margin: 4rem auto 2rem;
	padding-top: 2rem;
	text-shadow: 1px 2px 15px rgba(0, 0, 0, .4);
	color: #007f92;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	h1 {font-size: 5.4vw;}
	h2 {font-size: 5.0vw;}
	h3 {font-size: 4.7vw;}
	h4 {font-size: 4.4vw;}
	h5 {font-size: 4.1vw;}

	h1#topHeading {
		margin: 3rem auto;
		}
	h2.sectionTitle {
		margin: 3rem auto 1rem;
		padding: 0 1rem 0;
		text-align: center;
		}
	}
@media screen and (min-width: 640px) and (max-width: 1044px) {
	h2.sectionTitle {
		margin-left: 2rem;
		}
	}

/* //------------------------------------------------------- */
[class^='lineHeading'] {
	display: flex;
	margin: 5rem 0 6rem;
	position: relative;
	line-height: 1.2;
	font-size: 3.1rem;
	}
[class^='lineHeading']:before {
	content: '\00a0';
	position: absolute;
	z-index:-2;
	bottom: .5rem;
	width: 100%;
	height: 1rem;
	background: repeating-linear-gradient(-45deg, #dcdcdc, #dcdcdc 2px, #fff 2px, #fff 4px);
	}
.lineHeading-blue:before {
	background: repeating-linear-gradient(-45deg, rgba(52,170,220,.4), rgba(52,170,220,.4) 2px, #fff 2px, #fff 4px);
	}
.lineHeading-green:before {
	background: repeating-linear-gradient(-45deg, rgba(154,205,50,1), rgba(154,205,50,1) 2px, #fff 2px, #fff 4px);
	}
.bg-green20per .lineHeading-green:before {
	background: repeating-linear-gradient(-45deg, rgba(43,146,15,.8), rgba(43,146,15,.8) 2px, #fff 2px, #fff 4px);
	}

.lineHeading span {
	display: inline-block;
	}
@media screen and (min-width: 640px) and (max-width: 1044px) {
	[class^='lineHeading'] {
		font-size: 2.8rem;
		}
	}
@media screen and (max-width: 639px) {
	[class^='lineHeading'] {
		font-size: 2rem;
		}
	}

/* ============================================ */
/* Embedded contents */
/* ============================================ */
img {
	max-width: 100%;
	height: auto;
	outline: 0;
	vertical-align: bottom;
	}
	a img {
		border: 0;
		background-color: none;
		}
	a:hover img {
		opacity: 0.85;
		}



/* ============================================ */
/* Phrasing contents */
/* ============================================ */
a {
	color: #005e9b;
	font-weight: 300;
	text-decoration: none;
	cursor: pointer;
	}
	a:hover {
		opacity: .8;
		text-decoration: underline;
		}

strong { font-weight: bold;}

em,i { font-style: normal;}



/*[ Newline Character ]
------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	.spOnly { display: none !important; }
	.pcOnly { display: visible !important; }
	}
@media screen and (max-width: 767.9px) {
	.spOnly { display: visible !important; }
	.pcOnly { display: none !important; }
	}


/* ============================================ */
/* Flow contents */
/* ============================================ */
hr {
	width: 100%;
	height: 2px;
	margin: 2rem auto;
	padding: 0;
	border: 0;
	}
	hr.white {background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0));}
	hr.black {background: linear-gradient(to right, rgba(255,255,255,0), rgba(0,0,0,.8), rgba(255,255,255,0));}
	hr.gold {background: linear-gradient(to right, rgba(255,245,151,0), rgba(171,136,32,.8), rgba(255,245,151,0));}
	hr.green {background: linear-gradient(to right, rgba(24, 157, 0,0), rgba(24, 157, 0,1), rgba(24, 157, 0,0));}

ol,ul {
	list-style-type: none;
	}
	.square	{ list-style-type: square; }
	.disc	{ list-style-type: disc; }
	.circle	{ list-style-type: circle; }
	.decimal	{ list-style-type: decimal; }
	.square, disc, circle, decimal {
		padding-left: 3rem;
		}

p {
	line-height: 1.8;
	}

pre {
	white-space: pre-wrap;
	overflow-wrap: break-word;
	font-family: 'Consolas', 'Noto Sans JP', sans-serif;
	}




/*=========================================================
*
*	Frequently used parts
*
=========================================================*/

a.popupLink {
	position: relative;
	text-decoration: none;
	display: inline-block;
	color: #189d00;
	padding: .2rem .5rem;
	transition: color ease 0.3s;
	}
a.popupLink:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 0%;
	left: 0;
	bottom: 0;
	background-color: #189d00;
	transition: all ease 0.3s;
	}
a.popupLink:hover {
	color: #fff;
	}
a.popupLink:hover:after {
	height: 100%;
	}

/* ---------------------------------------------------------- */
.anchorlink {
	display: block;
	padding-top: 7rem;
	margin-top: -7rem;
	}
/*[ Media Query ] --------------------------- */
@media only screen and (max-width: 767.9px) {
	.anchorlink {
		padding-top: 3rem;
		margin-top: -3rem;
		}
	}


/* ---------------------------------------------------------- */
.flex {
	display: flex;
	flex-wrap: wrap;
	}

.flex-center {
	justify-content: center;
	}
.flex-between {
	justify-content: space-between;
	}
.flex-right {
	justify-content: flex-end;
	}

/* 親要素に記述して、テキストを上下左右中央寄せする */
.center-center {
	display: flex;
	align-items: center;
	justify-content: center;
	}




/*=========================================================
*
* [Common Parts]
*
=========================================================*/

/* ============================================ */
/* ページの先頭へ  */
/* ============================================ */
.toTop {
	position: fixed;
	z-index: 1000;
	right: 2rem;
	bottom:0;
	width: 6rem;
	height: 6rem;
	text-align:center;
	}
.toTop a {
	display: block;
	width: 6rem;
	height: 6rem;
	line-height: 4rem;
	border-radius: 50%;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 1.5rem;
	font-weight:500;
	line-height: 1.5;
	}
.toTop a:before {
	content: '';
	position: absolute;
	top: 1.5rem;
	left: 40%;
	right: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transition: .3s;
	}
.toTop a:after {
	content: '';
	position: absolute;
	top: calc(1.5rem + 5px);
	left: 40%;
	right: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transition: .3s;
	}
.toTop a:hover {
	background: rgba(0,0,0,.95);
	text-decoration:none;
	}


/*====================================================
*	ページ目次
====================================================*/
.pageIndex {
	position: relative;
	overflow: visible;
	background: #f5f5f5;
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.pageIndex:before {
	position: absolute;
	z-index: 10;
	top: -1.8rem;
	left: -.8rem;
	color: #17927f;
	font-size: 3.9rem;
	font-family: 'Material Symbols Outlined';
	content: '\e896';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.pageIndex h3 {
	margin: .5rem;
	margin-left: 4rem;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.2;
	}
.pageIndex ol {
	margin: 1rem 2rem;
	}
.pageIndex ol li {
	padding: .5rem 0;
	line-height: 1.2;
	border-bottom: dotted 1px #999;
	}
.pageIndex ol li:nth-child(1) {
	border-top: dotted 1px #999;
	}

.pageIndex ol li span,
.pageIndex ol li:before {
	font-size: 3rem;
	color: #17927f;
	font-family: 'Material Symbols Outlined';
	padding-right: 0.5rem;
	vertical-align: -10px;
	}
.pageIndex ol li:nth-child(1):before { content: "filter_1";}
.pageIndex ol li:nth-child(2):before { content: "filter_2";}
.pageIndex ol li:nth-child(3):before { content: "filter_3";}
.pageIndex ol li:nth-child(4):before { content: "filter_4";}
.pageIndex ol li:nth-child(5):before { content: "filter_5";}
.pageIndex ol li:nth-child(6):before { content: "filter_6";}
.pageIndex ol li:nth-child(7):before { content: "filter_7";}

.pageIndex li .material-symbols-outlined {
	vertical-align: -6px;
	}

.indexCircle {
	position: absolute;
	top: -1rem;
	left: -1.5rem;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	ext-align:center;
	line-height: 80px;
	border: solid 3px #17927f;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.pageIndex {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.pageIndex h3 {
		margin: 1rem 0 0 3rem;
		font-size: 5.1vw;
		}
	.pageIndex ol {
		margin-left: 1rem;
		}
	.pageIndex ol li {
		margin-left: 1rem;
		font-size: 16px;
		}
	}


/*====================================================
*	手順
====================================================*/
.flowsheet {
	position: relative;
	overflow: visible;
	background: #eee;
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.flowsheet:before {
	position: absolute;
	z-index: 10;
	top: -1.8rem;
	left: -.8rem;
	color: #9d50bb;
	font-size: 3.6rem;
	font-family: 'Material Symbols Outlined';
	content: '\e0ae';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.flowsheet h2 {
	/*margin: .5rem;*/
	margin-left: 0rem;
	font-weight: 500;
	line-height: 1.2;
	}
.flowsheet ol {
	margin: 1rem 2rem;
	}
.flowsheet ol li {
	padding: 1rem 0;
	line-height: 1.6;
	}

.flowsheet ol li span,
.flowsheet ol li:before {
	font-weight: bold;
	color: #9d50bb;
	}
.flowsheet ol li:nth-child(1):before { content: "STEP1 : ";}
.flowsheet ol li:nth-child(2):before { content: "STEP2 : ";}
.flowsheet ol li:nth-child(3):before { content: "STEP3 : ";}
.flowsheet ol li:nth-child(4):before { content: "STEP4 : ";}
.flowsheet ol li:nth-child(5):before { content: "STEP5 : ";}
.flowsheet ol li:nth-child(6):before { content: "STEP6 : ";}
.flowsheet ol li:nth-child(7):before { content: "STEP7 : ";}

.flowsheet li .material-symbols-outlined {
	vertical-align: -6px;
	}

.flowCircle {
	position: absolute;
	top: -1rem;
	left: -1.5rem;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	ext-align:center;
	line-height: 80px;
	border: solid 3px #9d50bb;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.flowsheet {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.flowsheet h2 {
		margin: 1rem 0 0 3rem;
		}
	.flowsheet ol {
		margin-left: 1rem;
		}
	.flowsheet ol li {
		margin-left: 1rem;
		font-size: 16px;
		}
	}


/*====================================================
*	項目
====================================================*/
.item {
	position: relative;
	overflow: visible;
	background: rgba(133,216,203,.2);/*#85d8cb*/
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.item:before {
	position: absolute;
	z-index: 10;
	top: -4.4rem;
	left: -2rem;
	color: #17927f;
	font-size: 5.5rem;
	font-family: 'Material Symbols Outlined';
	content: '\e2e6';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.item h2 {
	margin: .5rem;
	margin-left: 3rem;
	font-weight: 500;
	}
.item h3,
.item h4 {
	margin: 1rem 3rem;
	}
.item ul {
	margin: 1rem 2rem 1rem 4rem;
	}
.item ul li {
	list-style-type: square;
	padding: .5rem 1rem .3rem 0;
	}
.item ul li::marker {
	color: #17927f;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.item {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.item h2 {
		margin: 1rem 0 0 5rem;
		}
	.item ul {
		margin-left: 3rem;
		}
	}

/*====================================================
*	情報・お知らせ
====================================================*/
.information {
	position: relative;
	overflow: visible;
	background: rgba(204,232,181,.2);/*#cce8b5*/
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.information:before {
	position: absolute;
	z-index: 10;
	top: -4.4rem;
	left: -2rem;
	color:#a8e874;
	font-size: 5.8rem;
	font-family: 'Material Symbols Outlined';
	content: '\e88e';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.information h3 {
	margin: .5rem;
	margin-left: 3rem;
	font-weight: 500;
	}
.information h4 {
	margin: 1rem 3rem;
	}
.information p {
	margin: 1rem 3rem 2rem;
	}
.information ul {
	margin: 1rem 2rem 1rem 3rem;
	}
.information ul li {
	list-style-type: none;
	padding: .5rem 1rem .3rem;
	border-bottom: dotted 1px #999;
	}
.information ul li:nth-child(1) {
	border-top: dotted 1px #999;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.information {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.information h3 {
		margin: 1rem 0 0 5rem;
		}
	}


/*====================================================
*	疑問・質問
====================================================*/
.question {
	position: relative;
	overflow: visible;
	background: rgba(193,221,244,.6);/*#c1ddf4*/
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.question:before {
	position: absolute;
	z-index: 300;
	top: -4.4rem;
	left: -2rem;
	color:#0795d1;
	font-size: 5.8rem;
	font-family: 'Material Symbols Outlined';
	content: '\e887';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.question h3 {
	margin: .5rem;
	margin-left: 3rem;
	font-weight: 500;
	}
.question h4 {
	margin: 1rem 3rem;
	}
.question p {
	margin: 1rem 3rem 2rem;
	}
.question ul li::marker {
	color: #0795d1;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.question {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.question h3 {
		margin: 1rem 0 0 5rem;
		}
	}


/*====================================================
*	注意・注釈
====================================================*/
.notice {
	position: relative;
	overflow: visible;
	background: rgba(255,0,0,.1);
	display: block;
	width: 90%;
	max-width: 1024px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 1rem;
	}
.notice:before {
	position: absolute;
	z-index: 1000;
	top: -4.4rem;
	left: -2rem;
	color: #c00;
	font-size: 5.8rem;
	font-family: 'Material Symbols Outlined';
	content: '\e000';
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -5px !important;
	}
.notice h3 {
	margin: .5rem;
	margin-left: 3rem;
	font-weight: 500;
	}
.notice h4 {
	margin: 1rem 3rem;
	}
.notice p {
	margin: 1rem 3rem 2rem;
	}
.notice ul li::marker {
	color: #c00;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.notice {
		width: 96%;
		margin-left: 2rem;
		padding-left: 1rem;
		}
	.notice h3 {
		margin: 1rem 0 0 5rem;
		}
	}


/*====================================================
*	Contact ~お問い合わせはこちら~
====================================================*/
#contact {
	width: 100%;
	margin: 5rem 0 4rem;
	text-align: center;
	}
#contact img {
	max-width: 65rem;
	}

@media screen and (max-width: 767.9px) {
	#contact img {
		width: 90vw;
		}
	}

/*====================================================
*	PDF Download
 ====================================================*/
.bxs-download {
	font-size: 5rem;
	}

.PDFdl {
	width: 80%;
	margin: 2rem auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255,255,0,.05);
	border: 1px solid #ee7836;
	}
.PDFdl img {
	width: 150px;
	height: auto;
	padding: 0;
	}
.PDFdl p:nth-child(2) {
	text-align: left;
	padding: 1rem;
	}
.PDFdl p:nth-child(3) {
	width: 100px;
	text-align: center;
	}

@media screen and (max-width: 767.9px) {
	.PDFdl {
		width: 98%;
		}
	.PDFdl p:nth-child(3) {
		display: none;
		}
	}



/*====================================================
*	Accordion jQery ver.
====================================================*/
.jq-accordion {
	width: 100%;
	margin: 1rem auto;
	}

.jq-accordion .ac-head {
min-width:width: calc(100% - 40px);
	display: flex;
	position: relative;
	margin: 0 0 2px;
	padding: 1.5rem 6rem 1rem 5rem;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #fff;
	background: #eee;
	cursor: pointer;
	transition: .5s;
	font-weight: normal;
	}

.jq-accordion .ac-head.ac-open {
	margin: 0 0 2px;
	padding: 2rem 1rem;
	color: #fff;
	background: #aaa;
	}

.jq-accordion .ac-body {
	line-height: 1.8;
	margin: 0 auto 2rem;
	padding: 1.6rem 1rem 1rem;
	border-bottom: 1px solid #ccc;
	background-color: #f6f6f6;
	}

.jq-accordion .ac-closeButton {
	color: #c00;
	font-weight: bold;
	text-align: center;
	}

.jq-accordion .ac-head span:nth-child(1) {
	width: 4rem;
	}
.jq-accordion .material-symbols-outlined {
	text-align: center;
	vertical-align: middle;
	font-size: 1.6em;
	padding: 0 .5rem .3rem 0;
	}


/*-- Mark [>] --*/
.ac-head {height:72px;}
.jq-accordion.ac-arrow .ac-head:before {
	position: absolute;
	top: 25%;
	right: 3rem;
	content: '';
	width: 15px;
	height: 15px;
	transform: rotate(135deg)!important;
	transition: all .5s;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	background: none;
	}

.jq-accordion.ac-arrow .ac-head.ac-open:before {
	top: 40%;
	transform: rotate(-45deg)!important;
	transition: .5s;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	background: none;
	}

/*-- Mark [+] --*/
.jq-accordion.ac-plus .ac-head::before,
.jq-accordion.ac-plus .ac-head::after {
	position: absolute;
	top: 50%;
	right: 3%;
	content: '';
	width: 20px;
	height: 2px;
	background: #000;
	transform: translateY(-50%);
	}
.jq-accordion.ac-plus .ac-head::after {
	transform: translateY(-50%) rotate(90deg);
	transition: .5s;
	}
.jq-accordion.ac-plus .ac-head.ac-open:after {
	transform: translateY(-50%) rotate(0);
	}


/*====================================================
*	Accordion CSS ver.
====================================================*/
.css-accordion {
	width: 100%;
	}
.css-accordion label:hover{
	opacity: .6;
	}
.css-accordion .ac-hidden {
	display: none;
	}
.css-accordion .ac-open {
	display: block;
	position: relative;
	line-height:1.5;
	margin: 2px 0;
	padding: 1rem 5rem 1rem 6rem;
	cursor: pointer;
	background: #f8f3e6;
	}
.css-accordion .ac-close {
	display: block;
	position: relative;
	left: 0;
	line-height:1.3;
	padding: 0 0 0 6rem;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.5s;
	}
.css-accordion .ac-hidden:checked + .ac-open + .ac-close {
	opacity: 1;
	margin-bottom: 2rem;
	padding: 1rem 1rem 1rem 6rem ;
	height: auto;
	background: #f5f5f5;
	}
.css-accordion .ac-open span:nth-child(1),
.css-accordion .ac-close span:nth-child(1) {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5rem;
	height: 100%;
	text-align: center;
	color: #fff;
	}

.css-accordion .ac-open span:nth-child(1) {
	background: #ee7836;
	}
.css-accordion .ac-close span:nth-child(1) {
	background: #ccc;
	}

/*-- Mark [>] --*/
.css-accordion.ac-arrow .ac-open::after {
	position: absolute;
	top: 20%;
	right: 3%;
	content: '';
	width: 13px;
	height: 13px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	background: none;
	transform: rotate(135deg)!important;
	transition: all .5s;
	}
.css-accordion.ac-arrow .ac-hidden:checked + .ac-open:after {
	transform: rotate(-45deg) !important;
	top: 35%;
	transition: .5s;
	}

/*-- Mark [+] --*/
.css-accordion.ac-plus .ac-open::before,
.css-accordion.ac-plus .ac-open::after {
	position: absolute;
	top: 50%;
	right: 3%;
	content: '';
	width: 20px;
	height: 2px;
	background: #000;
	transform: translateY(-50%);
	}
.css-accordion.ac-plus .ac-open::after {
	transform: translateY(-50%) rotate(90deg);
	transition: .5s;
	}
.css-accordion.ac-plus .ac-hidden:checked + .ac-open:after {
	transform: translateY(-50%) rotate(0);
	}


/*====================================================
*	DLで表組み
====================================================*/
dl.dlTable {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5em;
	}
dl.dlTable dt,
dl.dlTable dd {
	margin: .3em 0;
	padding: 1rem;
	border: 1px #ccc solid;
	}
dl.dlTable dt {
	width: 25%;
	background-color: #eee;
	}
dl.dlTable dd {
	width: 75%;
	padding: 1rem 1rem 1rem 3rem;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 767.9px) {
	dl.dlTable {
		display: block;
		width: 98%;
		margin: 2rem auto;
		}
	dl.dlTable dt,
	dl.dlTable dd {
		width: 100% !important;
		}
	dl.dlTable dd {
		margin-bottom: 2rem;
		}
	}



/*====================================================
*	Table
====================================================*/
table {
	width: 90%;
	margin: 2rem auto;
/*	border-collapse: separate;
	border-spacing: 2px;*/
	border-collapse: collapse;
	border: 1px #ccc solid;
	}
caption {
	padding-top: 0.3rem;
	padding-bottom: 0.75rem;
	color: #999;
	caption-side: top;
	text-align: left;
	}
.captionBottom {
	caption-side: bottom;
	text-align: right;
	}
table th {
	position: relative;
	padding: .5rem;
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
	}
table td {
	padding: 8px 8px;
	text-align: left;
	vertical-align: middle;
	border: 1px #ccc solid;
	}
table tbody tr th:first-child {
	border: 1px #ccc solid;
	}
table td[colspan] {
	vertical-align: bottom;
	}

@media screen and (max-width: 767.9px) {
	table {
		width: 90vw;
		margin: 1rem auto;
		}
	table th {
		display: block !important;
		width: 100% !important;
		}
	table td {
		display: inline-block !important;
		width: 100% !important;
		text-align: center;
		padding: 1rem .5rem;
		}
	}

/* Base color */
table thead tr:first-child th {
	color:#222;
	background: rgba(220,220,220,.6);
	}
table tbody tr th:first-child {
	color:#222;
	background: rgba(220,220,220,.2);
	}
table tr:nth-child(odd) td {
	background:rgba(255 255, 255, 1);
	}
table tr:nth-child(even) td {
	background: rgba(240, 255, 255, .4);
	}
table tbody tr:hover th,
table tr:hover td {
	background: rgba(192, 251, 251, 1) !important;
	}


/*====================================================
*	Responsive Table
====================================================*/
.table-responsive-vertical table {
	width: 90%;
	margin: 2rem auto;
	background: #fff !important;
	border: 1px solid #ccc;
	}
.table-responsive-vertical table > thead > tr,
.table-responsive-vertical table > tbody > tr {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.table-responsive-vertical table > thead > tr > th,
.table-responsive-vertical table > thead > tr > td,
.table-responsive-vertical table > tbody > tr > th,
.table-responsive-vertical table > tbody > tr > td {
	text-align: center;
	vertical-align: middle;
	/*padding: 1rem 1.6rem;*/
	padding: 1rem 1rem;
	border: 1px solid #ccc;
	border-top: 0;
	border-bottom: 1px dotted #ccc;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.table-responsive-vertical table > thead > tr > th {
	border-bottom: 3px double #ccc;
	}
.table-responsive-vertical table > tbody + tbody {
	border-top: 1px solid #ccc;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 767.9px) {
	.table-responsive-vertical table {
		border: 0;
		}
	.table-responsive-vertical table > thead {
		display: none;
		}
	.table-responsive-vertical table > tbody {
		display: block;
		}
	.table-responsive-vertical table > tbody > tr {
		display: block;
		margin-bottom: .8rem;
		border-bottom: 1px solid #ccc;
		}
	.table-responsive-vertical table > tbody > tr > th {
		display: block;
		width: 100% !important;
		padding-right: 1rem;
		text-align: center;
		vertical-align: middle;
		font-weight: bold;
		border: 1px solid #ccc;
		border-bottom: 3px double #ccc;
		}
	.table-responsive-vertical table > tbody > tr > td {
		display: block;
		text-align: center;
		vertical-align: middle;
		padding-right: 1rem;
		}
	.table-responsive-vertical table > tbody > tr > th[data-title]:before,
	.table-responsive-vertical table > tbody > tr > td[data-title]:before {
		content: attr(data-title);
		float: left;
		font-weight: bold;
		}
	}

/*[ Pale Blue ]
---------------------------------------------------------------------------------- */
.table-responsive-vertical table.pale-blue > thead > tr > th {
	color: #fff;
	background: rgba(43, 187, 209, 1)
	}
.table-responsive-vertical table.pale-blue > tbody > tr > th {
	color: rgba(43, 187, 209, 1);
	background-color: #eee;
	}
.table-responsive-vertical table.pale-blue > tbody > tr:nth-child(odd) {
	background-color: rgba(43, 187, 209, .06);
	}
.table-responsive-vertical table.pale-blue > tbody > tr:hover th,
.table-responsive-vertical table.pale-blue > tbody > tr:hover td {
	background-color: rgba(43, 187, 209,.2);
	}
.table-responsive-vertical table.colspanTable tbody th[colspan] {
	background: rgba(43, 187, 209, .2) !important;
	}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 767.9px) {
	.table-responsive-vertical table.pale-blue > tbody > tr > td[data-title]:before {
		color: rgba(43, 187, 209,1);
		}
	.table-responsive-vertical table.pale-blue > tbody > tr:nth-child(odd),
	.table-responsive-vertical table.pale-blue > tbody > tr > td:nth-child(even) {
		background-color: #fff;
		}
	.table-responsive-vertical table.pale-blue > tbody > tr:hover th,
	.table-responsive-vertical table.pale-blue > tbody > tr:hover td {
		background-color: #fff;
		}
	.table-responsive-vertical table.pale-blue > tbody > tr:hover th {
		background-color: #eee;
		}
	.table-responsive-vertical table.colspanTable tbody th[colspan] {
		color: #fff;
		background: rgba(43, 187, 209, .9) !important;
		}
	}




/*=========================================================
*
*	etc parts
*
=========================================================*/

.spacer {
	font-size: 1px;
	background: transparent;
	height: 100%;
	}

.margin0		{margin: 0;}
.margin05	{margin: .5rem;}
.margin1		{margin: 1rem;}
.margin2		{margin: 2rem auto;}
.margin4		{margin: 4rem auto;}

.marginLeft2 {margin-left: 2rem;}
.marginLeft4 {margin-left: 4rem;}

.marginTop2 {margin-top: 2rem;}
.marginTop4 {margin-top: 4rem;}

.marginBottom2 {margin-bottom: 2rem;}
.marginBottom4 {margin-bottom: 4rem;}

/*[ Media Query ] --------------------------- */
@media screen and (max-width: 639.9px) {
	.marginLeft4 {margin-left: 0;}
	}

.padding2		{padding: 2rem;}
.paddingLeft2	{padding-left: 2rem;}
.paddingLeft4	{padding-left: 4rem;}

.text-left		{ text-align: left;}
.text-right	{ text-align: right;}
.text-center	{ text-align: center;}


/* ============================================ */
/* Text Decoration */
/* ============================================ */
.attention {
	font-size: 120%;
	font-weight: bold;
	color: #c00;
	}
	small.attention {
		font-size: 85%;
		font-weight: bold;
		color: #c00;
		}

.emphasis {
	font-size: 180%;
	font-weight: bold;
	letter-spacing: .08rem;
	}

.fontsize120 {
	font-size: 120%;
	}
.fontsize150 {
	font-size: 150%;
	}
.fontsize200 {
	font-size: 200%;
	}

.fontSmall {
	font-size: .8em!important;
	}

.fontWhiteStroke {
	color: #000;
	-webkit-text-stroke: 1px rgba(255,255,255,0.6);
	text-stroke: 1px rgba(255,255,255,0.6);
	}
.fontBlackStroke {
	color: #fff;
	-webkit-text-stroke: 1px rgba(51,51,51,0.5);
	text-stroke: 1px rgba(51,51,51,0.5);
	}

.ls005 {letter-spacing: .05em;}
.ls015 {letter-spacing: .15em;}


/*[ Media Query ] --------------------------- */
@media screen and (max-width: 480px) {
	.emphasis {
		font-size: 130%;
		font-weight: bold;
		letter-spacing: .08rem;
		}
	}


/* ============================================ */
/* Box  */
/* ============================================ */
.borderbox-gray {
	margin: 1rem auto;
	padding: 1.5rem;
	border: #ccc solid 1px;
	border-radius: 5px;
	}

.borderbox-orange {
	margin: 2rem auto;
	padding: 1.5rem;
	border: #ee7836 solid 1px;
	border-radius: 5px;
	}

.borderbox-orchid {
	margin: 2rem auto;
	padding: 1.5rem;
	border: #da70d6 solid 1px;
	border-radius: 5px;
	}

.borderbox-black {
	margin: 1rem auto 3rem;
	padding: 1.5rem;
	border: #000 solid 3px;
	border-radius: 20px;
	}
	.borderbox-black h3 {
		margin-top: 1rem;
		}

.box-gray {
	margin: 1rem auto;
	padding: 1.5rem;
	background: linear-gradient(to right,#ddd,#eee,#ddd);
	border-radius: 5px;
	}

.shadowLayer {/*水平方向の距離 垂直方向の距離 ぼかし距離 広がり距離 影の色*/
	box-shadow: 2px 5px 10px 2px rgba(220,220,220,.3);
	}


/* ============================================ */
/* Color */
/* ============================================ */
.bg-white50per {
	background: rgba(255,255,255,.5);
	}
.bg-green50per {
	background: rgba(182,245,165,.5);/*#b6f5a5*/
	}
.bg-green20per {
	background: rgba(182,245,165,.2);/*#b6f5a5*/
	}

section.bg-green50per article,
section.bg-green20per article {
	background: rgba(255,255,255,.2);
	}

.bg-yellowgreen {
	background: rgba(189,217,117,.8); /*#bdd975*/
	}
.bg-yellow {
	background: rgba(255,255,0,.4);
	}



/* ============================================ */
/* Google Icons */
/* ============================================ */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-moz-font-feature-settings: 'liga';
	-moz-osx-font-smoothing: grayscale;
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: -10px;
	}

/* ============================================ */
/* Google Material Symbols */
/* ============================================ */
.material-symbols-outlined {
	font-variation-settings:
	'FILL' 0,
	'wght' 400,
	'GRAD' 0,
	'opsz' 48
	}
.material-symbols-outlined.downArrow {
	font-variation-settings:
	'wght' 500,
	'opsz' 30;
	}

.downArrow {
	padding-top: 2rem;
	font-weight: 500;
	font-size: 3rem;
	color: #9932cc;
	}


/* ============================================ */
/* Color Change Animation */
/* ============================================ */
#animeColor {
	background: rgba(208,32,144,.5);
	-webkit-animation: menu-bg 20s infinite;
	animation: menu-bg 20s infinite;
	}
	@keyframes menu-bg {
		0% { background-color: rgba(170, 102, 170,.6); } /*#aa66aa*/
		20% { background-color: rgba(104, 103, 205,.6); } /*#6867cd*/
		40% { background-color: rgba(143, 200, 31,.6); } /*#8fc81f*/
		60% { background-color: rgba(54, 130, 174,.6); } /*#3682ae*/
		80% { background-color: rgba(152, 34, 68,.6); } /*#982244*/
		100% { background-color: rgba(170, 102, 170,.6); } /*#aa66aa*/
		}



/*=========================================================
*
*	Form content
*
=========================================================*/
.submit_area {
	text-align: center;
	}









/*=========================================================
*
* 2023-07 【OWLISH WEB便利帖】
*
== EOF =====================================================*/
