@charset "UTF-8";
/* CSS Document */

/* ----------------------------------------------
	Google フォント
------------------------------------------------- */
/*@import url(https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined);*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


:root {
	--base-color: #4A4848;
	--basic-color: #efefef;
	--point-color: #999999;
	
	--color-details_base: #aaa;  /**/
	--color-top_use_base: #555;  /**/
	--color-top_question_base: #555;  /**/
	
	--color-white: #ffffff;
	--color-yellow: #fff471;
	--color-crimson: #db3d51;
	--color-red: #ea4f39;
	--color-brown: #70523b;
	--color-blue: #4a76ce;
	--color-pink: #ff7b9b;
	--color-green: #58bc6e;
	--color-orange: #f29024;
	
	--color-lightblue: #00addf;
	--color-lightorange: #fef7f0;
	
	--color-back-pink-base: #ffdcd6;
	--color-back-pink-line: #fdeeec;
}



/* ----------------------------------------------
	This style definition is initialize.
------------------------------------------------- */

html {
	scroll-behavior: smooth;
}
:target {
	scroll-margin-top: 50px;
}

header, section, footer, nav { display:block; }/*- html5タグをブロック要素にする基本設定 -*/

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

.clearText {
	color: transparent;
	text-align: left;
	text-indent: -100%;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none;
	display: inline-block;
	color: var(--base-color);
	cursor: pointer;
}

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




/*-
	共通設定　ここから
------------------------------------------------- */
body {
	color: var(--base-color);
	font-family: "M PLUS Rounded 1c", sans-serif;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

.stageWrap {
	display: block;
	width: calc(100% - 20px);
	margin: 0 auto;
}

strong {
	font-weight: bold;
}


/* ----------------------------------------------
	アコーディオン
------------------------------------------------- */
.accordion details summary {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	background-color: var(--point-color);
	color: var(--color-white);
	font-weight: bold;
	padding: 5px 15px;

	cursor: pointer;
}
.accordion details summary::-webkit-details-marker {
	display: none;
}

.accordion details summary::after {
	font-family: 'Material Icons';
	content: '\e313';
	font-size: 26px;
	font-weight: bold;
	
	display: grid;
	place-content: center;
	
	width: 15px;
	height: 15px;
	
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 0.4s;
}
.accordion details[open] summary::after {
	transform: rotate(180deg);
}
.accordion details > div {
	background-color: var(--color-white);
	padding: 15px;
	
	height: 0;
	transition: transform 0.4s;
}
.accordion details[open] > div {
	height: 100%;
}


/* ----------------------------------------------
	リスト
------------------------------------------------- */
/*-通常「・」-*/
.list {
	list-style: disc;
	padding-left: 1.5em;
}
/*-英字「A.」-*/
.list_alpha {
	list-style: upper-alpha;
	padding-left: 1.5em;
}
/*--*/
.list_closed {
	list-style: disclosure-closed;
	padding-left: 1.5em;
}
/*-まる「●」-*/
.list_circle {
	list-style: non;
	padding-left: 1em;
}
.list_circle > li::marker {
	color: var(--back-point-color);
	content: '●';
}


/* ----------------------------------------------
	リスト（番号）
------------------------------------------------- */
.ol_circle {
	counter-reset: listnum;
}
.ol_circle > li {
	font-size: 16px;
}
.ol_circle > li::before {
	counter-increment: listnum;
	content: counter(listnum);
	
	text-align: center;
	font-weight: bold;
	
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	
	display: grid;
	place-items: center;

	color: var(--color-white);
	background-color: var(--point-color);
	border: solid 1px var(--point-color);
}

.c_num {
	counter-reset: listnum;
}
.c_num > li {
	font-size: 16px;
}
.c_num > li::before {
	counter-increment: listnum;
	content: counter(listnum);
	
	text-align: center;
	font-weight: bold;
	
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	
	display: grid;
	place-items: center;

	color: var(--color-white);
	background-color: var(--point-color);
	border: solid 1px var(--point-color);
}

.ol_num {
	padding-left: 1em;
	list-style: decimal;
}


/* ----------------------------------------------
	備考（※）
------------------------------------------------- */
.ets{}
.ets li {
	position: relative;
	padding-left: 1em;
	/*margin: auto !important;*/
	font-size: 10px;
}
.ets li::before {
	content: '\0203B';
	position: absolute;
	left: 0;
}


/* ----------------------------------------------
	ボタン（矢印）
------------------------------------------------- */
.more_arrow a {
	color: var(--base-color);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	
	display: block;
	padding: 10px 20px;
	background-color: #fff;
	border: solid 1px var(--base-color);
	border-radius: 50px;
	
	position: relative;
}
.more_arrow a::after {
	font-family: 'Material Icons';
	
	position: absolute;
	right: 20px;
	top: calc(((100% - 1em) / 2) - 0.2em);
}
.more_arrow a:hover {
	/*opacity: 0.6;*/
	/*transition: 0.15s ease-in-out;*/
}
.more_arrow a:hover::after {
	/*transition: 0.15s ease-in-out;*/
}
/*- 「→」 -*/
.more_arrow.arrow_forward a::after {
	/*transform: rotate(270deg);*/
	content: '\e5c8';
}
/*- 「←」 -*/
.more_arrow.arrow_back a::after {
	/*transform: rotate(0deg);*/
	content: '\e5c4';
}
/*- 「↑」 -*/
.more_arrow.arrow_upward a::after {
	/*transform: rotate(90deg);*/
	content: '\e5d8';
}
/*- 「↓」 -*/
.more_arrow.arrow_downward a::after {
	/*transform: rotate(180deg);*/
	content: '\e5db';
}

/*- 「▲→」 -*/
.more_arrow.arrow_right a::after {
	content: '\e5df';
}
/*- 「▲←」 -*/
.more_arrow.arrow_left a::after {
	content: '\e5de';
}
/*- 「▲↑」 -*/
.more_arrow.arrow_dropup a::after {
	content: '\e5c7';
}
/*- 「▲↓」 -*/
.more_arrow.arrow_dropdown a::after {
	content: '\e5c5';
}


/* ----------------------------------------------
	ボタン「PDF」
------------------------------------------------- */
.link_pdf {}
.link_pdf a {
	font-size: 16px;
	font-weight: bold;
	text-align: center;

	display: block;
	padding: 10px 20px;
	border-radius: 10px;
	
	border: solid 2px var(--point-color);
	
	position: relative;
}
.link_pdf a::after {
	font-family: 'Material Icons';
	content: '\e415';
	font-size: 24px;
	
	position: absolute;
	right: 20px;
	top: calc(((100% - 1em) / 2) - 0.2em);
}


/* ----------------------------------------------
	ボタン「外部」
------------------------------------------------- */
.link_b {}
.link_b a {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	
	display: block;
	padding: 10px 20px;
	border-radius: 10px;
	
	border: solid 2px var(--point-color);
	
	position: relative;
}
.link_b a::after {
	font-family: 'Material Icons';
	content: '\e89e';
	font-size: 24px;
	
	position: absolute;
	right: 20px;
	top: calc(((100% - 1em) / 2) - 0.2em);
}


/* ----------------------------------------------
	ヘッダー
------------------------------------------------- */
#header {
	background-color: #f9f4e4;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0, .4);
	
	height: 50px;
	width: 100%;
	
	position: fixed;
	top: 0;
	z-index: 100000;
}
#header .stageWrap {
	display: grid;
	grid-template-columns: 1fr 50px;
	
}

/* ----------------------------------------------
	タイトル
------------------------------------------------- */
#header #sitetitle {
	width: calc(100vw - 50px);
	height: 50px;
}
#header #sitetitle a {
	width: calc(100% - 10px);
	
	background-image: url("../images/title_logo.png");
	background-repeat: no-repeat;
	background-size: 70%;
	background-position: left 10px center;
}

/* ----------------------------------------------
	メニュー
------------------------------------------------- */
#header #nav {
	display: none;
	background-color: #f9f4e4;
	position: absolute;
	padding: 20px 10px;
	overflow: hidden;
	top: 50px;
	left: 0;
	width: 100%;
	height: calc(100vh - 50px);
	
	font-size: 18px;
	
	background-image: url("../images/title_sp.png");;
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center bottom 120px;
}
#header #nav #mainMenu {
	display: grid;
	gap: 1em;
	flex-wrap: wrap;
	justify-content: center;
}
#header #nav #mainMenu li {
	text-align: center;
}
#header #nav #mainMenu li a {
	padding: 5px 35px;
	font-weight: bold;
	padding: 5px;

	/*background-color: #aaa;*/
	border-radius: 20px;
}
/*#header #nav #mainMenu li:last-of-type {
	display: none;
}*/
#header #nav #mainMenu li:last-of-type a {
	background-color: var(--color-green);
	border-radius: 20px;
	color: var(--color-white);
	padding-inline: 35px;
}

/* ----------------------------------------------
	ハンバーガーメニュー
------------------------------------------------- */
#header #hamburger {
	display: block;
	position: absolute;
	cursor: pointer;
	width: 50px;
	height: 50px;
	top: calc(50% + 0px);
	transform: translateY(-50%);
	right: 0;
	z-index: 100000;
}
#header #hamburger span {
	display: block;
	position: absolute;
	width: 55%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 2.5px;
	background-color: var(--base-color);
	border-radius: 5px;
	transition: 0.6s ease-in-out;
}
#header #hamburger span:nth-of-type(1) {
	top: -16px;
}
#header #hamburger span:nth-of-type(2) {}
#header #hamburger span:nth-of-type(3) {
	top: 16px;
}
#header #hamburger.open span{ width: 70%; }
#header #hamburger.open span:nth-of-type(1){ top: 0; transform: rotate(135deg);}
#header #hamburger.open span:nth-of-type(2){ width: 0; }
#header #hamburger.open span:nth-of-type(3){ top: 0; transform: rotate(-135deg); }


/* ----------------------------------------------
	フッター
------------------------------------------------- */
#footer {
	position: relative;
	padding-top: 30px;
}
#footer #page-top a {
	height: 50px;
	width: 50px;
	
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9999;
	
	border-radius: 25px;
	background-color: var(--color-pink);
	background-image: url("../images/arrow.svg");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	
	transform: rotate(270deg);
	
	box-shadow: 0 0 5px var(--base-color);
}

#footer #page-top a img {
	width: 100%;
}
#footer #inquiry {
	margin: 20px 0 20px;
}
#footer #inquiry dl {
	display: grid;
	gap: 1em;
}
#footer #inquiry dl dt {
	color: var(--color-brown);
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
#footer #inquiry dl dd {
	text-align: center;
	display: grid;
	gap: 1em;
}
#footer #inquiry dl dd h5 {
	font-size: 14px;
}
#footer #inquiry dl dd h5 strong {
	font-size: 18px;
}
#footer #footermenu {
	border-top: solid 2px var(--base-color);
	padding-top: 1em;
}
#footer #footermenu #copy {
	font-size: 12px;
	text-align: left;
	padding: 0 10px;
}


/*-
	PC版（821px以上）ここから
------------------------------------------------- */
@media screen and (min-width:768px), print{
	
	.pc_non { display:none !important; }
	
	a { transition: 0.15s ease-in-out; }
	a:hover { opacity: 0.6; }
	
	:target {
		scroll-margin-top: 75px;
	}
	
	body {
		padding-top: 75px;
	}
	
	.stageBase {
		padding: 70px 0;
	}
	.stageWrap {
		width: 1100px;
		padding: 0 50px;
	}
	
	
	/* ----------------------------------------------
		アコーディオン
	------------------------------------------------- */
	.accordion details summary {
		padding: 5px 30px;
	}
	.accordion details > div {
		padding: 15px 30px;
	}
	
	
	/* ----------------------------------------------
		備考（※）
	------------------------------------------------- */
	.ets{}
	.ets li {
		font-size: 14px;
	}
	
	/* ----------------------------------------------
		ヘッダー
	------------------------------------------------- */
	#header {
		height: 75px;
		display: grid;
		place-content: center;
	}
	#header .stageWrap {
		grid-template-columns: 1fr 600px;
	}
	
	#header #sitetitle {
		width: 100%;
		height: 75px;
	}
	
	
	/* ----------------------------------------------
		メニュー
	------------------------------------------------- */
	#header #nav {
		background-color: inherit;
		position: static;
		height: 75px;
		padding: 10px;
		display: grid;
		align-content: center;
		
		background-image: none;
	}
	#header #nav #mainMenu {
		display: flex;
		justify-content: end;
	}
	/*#header #nav #mainMenu li a {
		padding: 5px 35px;
		font-weight: bold;
	}
	#header #nav #mainMenu li:nth-of-type(2) a {
		background-color: var(--color-pink);
		border-radius: 20px;
		color: var(--color-white);
	}*/
	
	
	/* ----------------------------------------------
		フッター
	------------------------------------------------- */
	#footer {}
	#footer #inquiry dl dd h5 strong {
		font-size: 22px;
	}
	
	#footer #footermenu #copy {
		text-align: center;
		padding: 0 0 10px;
	}
	
}



/*-
	SP版（820px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 767px) {
	
	.sp_non { display:none !important; }
	
	body {
		padding: 50px 0;
		width: 100%;
		min-width: 320px
	}
	
	
}


