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

/* ----------------------------------------------
	Google フォント
------------------------------------------------- */
@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');

/* ----------------------------------------------
	共通色指定
------------------------------------------------- */
:root {
	--base-color: #4A4848;
	
	--color-header: #ffd75e;
	--color-footer: #075a30;
	
	--color-main: #80be5d;
	
	--color-white: #ffffff;
	--color-green: #0c8b00;
	--color-red: #ff0000;
	--color-blue: #0047b8;
	--color-orange: #ee781f;
	
	--color-o-green: #c1dfb5;
	--color-w-blue: #00acdc;
}
.red {
	color: var(--color-red) !important;
}

/* ----------------------------------------------
	基本情報
------------------------------------------------- */
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: -200%;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	height: 100%;
}

a {
	vertical-align: bottom;
	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%;
	
	
	width: 100%;
	min-width: 320px;
	padding: 60px 0 0;
}

.stageWrap {
	display: block;
	margin: 0 auto;
}

strong {
	font-weight: bold;
}



/* ----------------------------------------------
	リスト（番号）
------------------------------------------------- */
ol {
	counter-reset: listnum;
}


ol.num_a,
ol.num_b {
	display: flex;
	flex-wrap: wrap;
	gap: 2em 1em;
}
ol.num_a > li,
ol.num_b > li {
	font-size: 14px;
	
	width: calc(50% - 10px);
	
	display: grid;
	gap: 0.5em;
	align-content: start;
}
ol.num_a > li::before,
ol.num_b > 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(--back-point-color);
	background-color: var(--color-white);
	border: solid 1px var(--back-point-color);
}
ol.num_a > li img,
ol.num_b > li img {
	width: 100%;
}

ol.num_a > li::before {
	color: var(--color-white);
	background-color: var(--color-orange);
	border: solid 1px var(--color-orange);
}
ol.num_b > li::before {
	color: var(--color-orange);
	background-color: var(--color-white);
	border: solid 1px var(--color-orange);
}


/* ----------------------------------------------
	リスト
------------------------------------------------- */
/*-通常「・」-*/
ul.list {
	list-style: disc;
	padding-left: 1.5em;
}

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


/* ----------------------------------------------
	ヘッダー
------------------------------------------------- */
#header {
	display: block;
}
#header #sitetitle {
	filter:drop-shadow(0px 0px 5px var(--base-color));
	
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
}
#header #sitetitle a {
	background-color: var(--color-header);
	
	background-image: url("../images/1logo_ue.png");
	background-repeat: no-repeat;
	background-size: auto 90%;
	background-position: center;
	
	width: 100%;
	height: 60px;
}


/* ----------------------------------------------
	フッター
------------------------------------------------- */
#footer {
	position: relative;
	padding-top: 30px;
	background-color: var(--color-footer);
	color: var(--color-white);
}
#footer #page-top {
	height: 50px;
	width: 50px;
	
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9999;
	
	background-color: var(--color-header);
	border-radius: 25px;

	box-shadow: 0 0 5px var(--base-color);
}
#footer #page-top a {
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: 50%;
	mask-image: url("../images/arrow.svg");
	
	background-color: var(--color-footer);
	transform: rotate(270deg);
	border-radius: 25px;
}

#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(--color-white);
	padding-top: 1em;
}
#footer #footermenu #copy {
	font-size: 12px;
	text-align: center;
}


/*-
	PC版（768px以上）ここから
------------------------------------------------- */
@media screen and (min-width:768px), print{
	
	.pc_non { display:none !important; }
	
	
	:target {
		scroll-margin-top: 15px;
	}
	
	
	/* ----------------------------------------------
		ページレイアウト
	------------------------------------------------- */
	body {
		padding: 50px 0 0;
	}
	
	
	/* ----------------------------------------------
		リスト（番号）
	------------------------------------------------- */
	ol.num_a,
	ol.num_b {
		gap : 20px;
	}
	ol.num_a > li,
	ol.num_b > li {
		width: calc((100% / 4) - (20px * (4 - 1) / 4));
		
		display: grid;
		gap: 0.5em;
		align-content: start;
	}
	
	
	/* ----------------------------------------------
		ヘッダー
	------------------------------------------------- */
	#header {}
	#header #sitetitle a {
		height: 80px;
	}
	
	
	/* ----------------------------------------------
		フッター
	------------------------------------------------- */
	#footer {}
	
	#footer #page-top a {
		border-radius: 50%;
		
		right: 50px;
		bottom: 50px;
	}
	
	
}


/*-
	SP版（767px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 767px) {
	
	.sp_non { display:none !important; }
	
	
}



