/*どんな要素でも入れ子にできるタグ：div,li,dd*/
/* ----全体-------------------------------------------------------- */
:root {
	--HyojunMojiIro: rgba(255,255,255,1);
	--ThemeColor: rgba(30,144,255,1);
	--WhiteColor: rgba(255,255,255,1);
	--BlackColor: rgba(31,49,52,1);
	--TojisyaColor: rgba(62,179,112,1); /*緑*/
	--EventColor: rgba(217,51,63,1); /*紅赤*/
}
html {
	font-size:62.5%;
	word-wrap: break-word; /* 折り返し */
	overflow-wrap: break-word; /* 折り返し(CSS3から改称) */
}
body {
	font-family: 'メイリオ','Meiryo','Droid Sans','HiraKakuProN-W6','ヒラギノ角ゴ ProN W6';
	color: var(--HyojunMojiIro);
	background-image: url("images/BackGroundImage.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed; /* 背景画像を固定 スクロールしても動かない */
	margin: 0;
	/*border: 1px solid rgba(0,0,0,1);*/
}
h1,h2,h3,h4,h5,p,figure {
	margin: 0;
}
/* 蛍光ペン風 */
.marker {
	background: -webkit-linear-gradient(bottom,rgba(127,255,0,0) 5%,rgba(127,255,0,0.9),rgba(127,255,0,0) 65%); /*上に向って、蛍光色、蛍光の透明色(R,G,B,透過度)*/
	background: linear-gradient(to top,rgba(127,255,0,0) 5%,rgba(127,255,0,0.9),rgba(127,255,0,0) 65%); /*上に向って、蛍光色、蛍光の透明色(R,G,B,透過度)*/
}
/* ルビ */
[copy-ruby] {
    position: relative;
}
[copy-ruby]::before {
    content: attr(copy-ruby);
    position: absolute;
    top: -1.0em; /* フォントによって微調整が必要な為、WebFontがいい */
    left: 0; /*文字幅分のスペース確保*/
    right: 0; /*文字幅分のスペース確保*/
    font-size: 0.5em;
	text-align: center;
}
rt {
    display: none;
}
/*メディアクエリ*/
@media (min-width: 960px) { /* 横幅960px以上(PC) */
}
@media (max-width: 959px) { /* 横幅960px未満(タブレット＆スマホ) */
}
@media (min-width: 500px) and (max-width: 959px) { /* 横幅500px以上960px未満(タブレット) */
	body {
		background-image: url("images/BackGroundImageT.jpg");
	}
}
@media (max-width: 499px) { /* 横幅500px未満(スマホ) */
	body {
		background-image: url("images/BackGroundImageS.jpg");
	}
}
/* ----ヘッダー---------------------------------------------------- */
header {
	position: -webkit-sticky;
	position: sticky;
	width: 80vw;
	top: 0; /* 固定位置(必須) */
	z-index: 3; /* 重なり順 */
	display: -webkit-flex;
	display: flex;
	font-size: 1.6rem;
	margin: 0 auto 7vh; /* [上][左右][下] */
	height: 46px;
}
/*ロゴ画像*/
header > div {
	position: relative; /* ロゴの位置決め用 */
	width: 16%; /* タブレット用のCSSに切り替わるまでレイアウトが崩れない幅(見て調整) */
	background-color: rgba(137,195,235,1); /* 勿忘草色 わすれなぐさいろ */
}
header > div img {
	position: absolute; /* ロゴの位置決め */
	top: 50%; /* ロゴの位置決め(上下左右の中央揃え) */
	left: 50%; /* ロゴの位置決め(上下左右の中央揃え) */
  transform: translate(-50%, -50%); /* ロゴの位置決め(上下左右の中央揃え) */
}
/*ナビ*/
header > nav {
	position: relative; /* ナビの位置決め用 */
	width: 84%; /* 100% - 16% */
	background-color: var(--ThemeColor); /* dodgerblue */
}
header > nav > input[type="checkbox"] {
    display: none; /* チェックボックスは常に非表示 */
}
header > nav > ul {
	list-style-type: none; /* リストマーカーを表示しない　*/
	margin: 0px; /* リストマーカー分をつめる(IE) */
	padding: 0px; /* リストマーカー分をつめる(Firefox) */
}
header > nav a {
	text-decoration: none;
}
/*メディアクエリ*/
@media (min-width: 960px) { /* 横幅960px以上(PC) */
	header > nav > label {
		display: none;
	}
	header > nav > ul {
		position: absolute; /* ナビの位置決め */
		display: table;
		bottom: 3px; /* ナビの位置決め */
	}
	header > nav > ul > li {
		display: table-cell;
		width: calc((80vw * 0.84) / 5); /* 0.84はwidth:84% */
		text-align: center;
	}
	header > nav > ul > li:first-child { /*ハンバーガーのロゴ用スペース*/
		display: none; /* スペースごと非表示 */
	}
	header > nav a {
		color: var(--HyojunMojiIro);
		text-decoration: none;
	}
	header > nav a:hover {
		border-bottom: solid 2px var(--WhiteColor);
	}
}
@media (max-width: 959px) { /* 横幅960px未満(タブレット＆スマホ) */
	header {
		width: 100vw;
	}
	/*ナビ -ハンバーガーを描く-*/
	header > nav > #menu_open {
		position: absolute; /* ハンバーガーの位置決め */
		width: 25px; /* ハンバーガーの線の長さと同じ */
		height: calc(4px * 5); /* ハンバーガーの線(太さ4px)空線空線 */
		top: 50%; /* ハンバーガーの位置決め(上下の中央揃え) */
		transform: translate(0, -50%); /* ハンバーガーの位置決め(上下の中央揃え) */
		right: 3vw; /* ハンバーガーの位置決め */
	}
	header > nav > #menu_open > span,
	header > nav > #menu_open > span::before,
	header > nav > #menu_open > span::after {
		position: absolute;
		content: "";
		height: 4px; /* ハンバーガーの線の太さ */
		width: 25px; /* ハンバーガーの線の長さ */
		border-radius: 3px; /*角丸*/
		background-color: var(--WhiteColor); /* 線の色 */
		cursor: pointer; /* カーソル変更 */
	}
	header > nav > #menu_open > span::before {
		bottom: -8px;
	}
	header > nav > #menu_open > span::after {
		bottom: -16px;
	}
	/*ナビ -ナビ表示時の半透明の黒い部分-*/
	header > nav > #menu_close {
		display: none; /* はじめは隠しておく */
		position: fixed; /* 絶対位置、スクロール固定 */
		z-index: 4; /* 重なり順 */
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: var(--BlackColor);
		opacity: 0; /* 透明(非表示) */
		transition: 0.3s ease-in-out;
		cursor: pointer; /* カーソル変更 */
	}
	header > nav > #menu_close::before { /* ×を描く(縦棒) */
		content: "";
		position: absolute;
		width: 5px; /* 線の太さ */
		height: 25px; /* 線の長さ */
		background-color: var(--WhiteColor); /* 線の色 */
		border-radius: 3px; /*角丸*/
		right: calc(3vw + ((25px - 5px) / 2)); /* 3vwはハンバーガーの位置決めで設定した値((25px-5px)/2)はハンバーガーの幅の中央に縦棒が来るための計算 */
		transform: rotate(45deg);
	}
	header > nav > #menu_close::after { /* ×を描く(横棒) */
		content: "";
		position: absolute;
		width: 25px; /* 線の長さ */
		height: 5px; /* 線の太さ */
		background-color: var(--WhiteColor); /* 線の色 */
		border-radius: 3px; /*角丸*/
		right: 3vw; /* ハンバーガーの幅と横棒の幅が同じため計算不要(計算した場合calc(3vw+((25px-25px)/2))となるはず) */;
		transform: rotate(45deg);
	}
	header > nav > input.check:checked ~ #menu_close {
		display: block;
		opacity: 0.9; /* 黒い部分の透明度 */
	}
	/*ナビ -ナビ本体の表示部分-*/
	header > nav > ul {
		overflow: auto;
		position: fixed;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 5; /* 重なり順 */
		max-width: 330px; /* 最大幅 */
		background-color: rgba(255,255,255,1);
		transition: 0.3s ease-in-out;
		transform: translateX(-105%); /* 左に隠しておく */
	}
	header > nav > input.check:checked ~ ul {
		transform: translateX(0%); /* 中身を表示(右へスライド) */
		box-shadow: 4px 0 25px rgba(0,0,0,0.7); /* 表示されるナビの右側の影 */
	}
	/*ナビ -ナビ本体-*/
	header > nav > ul {
		display:-webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column; /* 子要素を上から下に配置 */
	}
	header > nav > ul > li {
		height: calc(1.6rem * 3); /* liの空白要素部分を表示する */
		line-height: calc(1.6rem * 3); /* vertical-alignを有効にする */
		vertical-align: middle;
		padding-left: 15px;
		border-bottom: 1px dotted var(--BlackColor);
	}
	header > nav > ul > li img {
		display: block;
		margin-top: calc(((1.6rem * 3) - 20px) / 2); /* 中央揃え(20pxは画像の高さ) */
		margin-left: auto;
		margin-right: auto;
	}
	header > nav > ul > li a {
		display: block;
		position: relative; /* ::afterのabsoluteを有効にするため */
		color: var(--BlackColor);
		font-weight: 600;
		text-decoration: none;
	}
	/*ナビ -リンクを示す">"を表示-*/
	header > nav > ul > li a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: rotate(45deg);
		right: 2px;
		width: 7px;
		height: 7px;
		margin-top: -5px;
		border-top: 2px solid var(--BlackColor);
		border-right: 2px solid var(--BlackColor);
		margin-right: 15px;
	}
}
@media (min-width: 500px) and (max-width: 959px) { /* 横幅500px以上960px未満(タブレット) */
	header {
		margin: 0 auto 8vh; /* [上][左右][下] */
		height: 40px;
	}
	header > div {
		width: 20vw;
	}
	header > nav {
		width: 80vw; /* 100vw - 2ovw */
	}
	header > nav > #menu_close::before { /* ×を描く(縦棒) */
		top: calc(((40px - 20px) / 2) - 2.5px); /* 20pxはハンバーガーの高さ(4px*5)2.5pxは45度回転した時の調整値(見て調整) */
	}
	header > nav > #menu_close::after { /* ×を描く(横棒) */
		top: calc(((40px - 20px) / 2) + ((25px - 5px) / 2) - 2.5px); /*((25px-5px)/2)は縦棒の中央に横棒が来るための計算*/
	}
	/*ナビ -ナビ本体の表示部分-*/
	header > nav > ul {
		width: 85%; /* 右側に隙間を作る(閉じるカバー分) */
	}
}
@media (max-width: 499px) { /* 横幅500px未満(スマホ) */
	/* cssで改行を入れる */
	.br::after { /* ::beforeは前に改行が入り、::afterは後ろに改行が入る */
		content: "\A";
		white-space: pre;
	}
	/* 蛍光ペン風 */
	.marker {
		background: -webkit-linear-gradient(bottom,rgba(127,255,0,0) 5%,rgba(127,255,0,0.9),rgba(127,255,0,0) 28%); /*上に向って、蛍光色、蛍光の透明色(R,G,B,透過度)*/
		background: linear-gradient(to top,rgba(127,255,0,0) 5%,rgba(127,255,0,0.9),rgba(127,255,0,0) 28%); /*上に向って、蛍光色、蛍光の透明色(R,G,B,透過度)*/
	}
	header {
		margin: 0 auto 10vh; /* [上][左右][下] */
		height: 36px;
	}
	header > div {
		width: 35vw;
	}
	header > div img {
		max-width: 100%; /* 親要素のwidthに収まりきらない場合に画像の大きさを最適化(縮小)する */
	}
	header > nav {
		width: 65vw; /* 100vw - 35vw */
	}
	header > nav > #menu_close::before { /* ×を描く(縦棒) */
		top: calc(((36px - 20px) / 2) - 2.5px); /* 20pxはハンバーガーの高さ(4px*5)2.5pxは45度回転した時の調整値(見て調整) */
	}
	header > nav > #menu_close::after { /* ×を描く(横棒) */
		top: calc(((36px - 20px) / 2) + ((25px - 5px) / 2) - 2.5px); /*((25px-5px)/2)は縦棒の中央に横棒が来るための計算*/
	}
	/*ナビ -ナビ本体の表示部分-*/
	header > nav > ul {
		width: 84%; /* 右側に隙間を作る(閉じるカバー分) */
	}
}
/* ----お知らせ---------------------------------------------------- */
.oshirase {
	width: 100vw;
	margin: 0 auto 3vh;
	font-size: 1.3rem;
	text-shadow: 1px 1px 0 var(--BlackColor),
				 -1px 1px 0 var(--BlackColor),
				 1px -1px 0 var(--BlackColor),
				 -1px -1px 0 var(--BlackColor); /* 文字の縁取り */
	font-weight: 600;
}
/* ----メイン------------------------------------------------------ */
/*全体*/
main {
	width: 80vw;
	margin: 0 auto;
	font-size: 1.6rem;
}
article {
	position: relative;
}
/*更新情報 背景*/
.seitennari > .ContentsTitle {
	position: relative;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(left,aliceblue 60%,dodgerblue);
	background: linear-gradient(to right,aliceblue 60%,dodgerblue);
	box-sizing: border-box;
	overflow: hidden;
}
.seitennari > .ContentsTitle::before,
.seitennari > .ContentsTitle::after {
	content: "";
	position: absolute;
	width: 50%;
	height: 500%;
	top: 0;
	left: 0;
	border-top-left-radius: 25%;
	border-top-right-radius: 35%;
	border-bottom-right-radius: 30%;
	border-bottom-left-radius: 40%;
	background-color: rgba(240,248,255,1);
	box-shadow: 0 0 10px 0 rgba(240,248,255,1);
	animation-name: wave;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: 0; /* 重なり順 */
}
.seitennari > .ContentsTitle::before {
	filter: blur(15px);
}
@keyframes wave {
	0% {
		transform: translate(80%,-80%) rotate(0deg);
	}
	100% {
		transform: translate(80%,-80%) rotate(360deg);
	}
}
/*更新情報*/
article > .ContentsTitle {
	display:-webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center; /* フレックスボックス内のアイテムの縦方向の中央揃え */
	background-color: rgba(240,248,255,1); /* 記事の見出し背景色 */
	color: var(--BlackColor);
	padding: 5px; /* 上下左右 */
}
article > .ContentsTitle > .UpdateDate {
	text-align: center;
	width: 45px;
	font-size: 1.4rem;
	line-height: 20px;
	z-index: 1; /* 重なり順 */
}
article > .ContentsTitle > .UpdateDate > p:first-child {
	background-color: rgba(255,255,255,1);
}
article > .ContentsTitle > .UpdateDate > p:nth-child(2) {
	background-color: rgba(227,227,227,1);
}
article > .ContentsTitle > .UpdateDate > p:last-child {
	background-color: rgba(200,200,200,1);
}
article > .ContentsTitle > .midashi {
	margin-left: 7px;
	z-index: 1; /* 重なり順 */
}
.seitennari > .ContentsTitle > .midashi {
	border-left: 4px solid var(--ThemeColor); /* 更新日と見出しの境界の縦線 */
}
.tojisyakai > .ContentsTitle > .midashi {
	border-left: 4px solid var(--TojisyaColor); /* 更新日と見出しの境界の縦線 */
}
.event > .ContentsTitle > .midashi {
	border-left: 4px solid var(--EventColor); /* 更新日と見出しの境界の縦線 */
}
article > .ContentsTitle > .midashi > h1 {
	font-family: 'Kosugi Maru', sans-serif;
	font-size: 2.0rem; /* 見出しのサイズ */
	padding-left: 7px;
}
article > .ContentsTitle > .midashi > p {
	font-size: 1.3rem; /* タグのサイズ */
	padding-left: 17px;
}
/*開閉ボタン*/
article > input[type="checkbox"] {
	display: none; /* チェックボックスは常に非表示 */
}
article > label { /* ボタンを配置 */
	position: absolute;
	z-index: 1; /* 重なり順 */
	width: 40px; /* ボタンの幅 */
	height: 40px; /* ボタンの高さ */
	bottom: 2px; /* ボタンの位置決め */
	left: 0; /* ボタンの位置決め(左右中央揃え) */
	right: 0; /* ボタンの位置決め(左右中央揃え) */
	margin: 0 auto; /* ボタンの位置決め(左右中央揃え) */
	/*box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);  ボタンに影をつける */
	border: 1px solid var(--BlackColor);
	border-radius: 50%; /* 角丸 */
	background-color: rgba(252,200,0,1); /* ボタンの色 */
  	color: var(--BlackColor); /* ボタンの文字色 */
	text-align: center;
	cursor: pointer; /*マウスカーソルを変更*/
}
article > label::before {
	content: "OPEN";
	position: absolute;
	font-size: 1rem;
	left: 50%;
	top: 35%;
    transform: translate(-50%, -50%);
}
article > label::after { /* リンクを示す"∨"を表示 */
	content: "";
	position: absolute;
	top: 75%; /* "∨"の位置調整(見て調整) */
	left: calc(50% - 4.5px); /* "∨"の位置調整(見て調整) */
	width: 7px;
	height: 7px;
	margin-top: -7px;
	border-top: 2px solid var(--BlackColor);
	border-right: 2px solid var(--BlackColor);
	transform: rotate(135deg);
	animation-name: blink;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
/*
article > label:hover {
	background-color: rgba(152,217,142,1);
	transition: 0.3s ease-in;
}
*/
article > input[type="checkbox"]:checked + label::before {
	content: "CLOSE"; /* チェックされていたら、文言を変更する */
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
}
article > input[type="checkbox"]:checked + label::after { /*リンクを示す"∧"を表示*/
	content: "";
	position: absolute;
	top: 35%; /* "∧"の位置調整(見て調整) */
	left: calc(50% - 4.5px); /* "∧"の位置調整(見て調整) */
	width: 7px;
	height: 7px;
	margin-top: -7px;
	border-top: 2px solid var(--BlackColor);
	border-right: 2px solid var(--BlackColor);
	transform: rotate(-45deg);
}
article > .oritatami {
	overflow: hidden;
	height: 8rem; /* 隠した状態の高さ */
}
article > input[type="checkbox"]:checked ~ .oritatami {
	height: auto; /* ”開く”をチェックしたら、高さが変化 */
}
@keyframes blink {
	0% { opacity: 1; }
	100% { opacity: 0.2; }
}
/*グループ 共通*/
article > .Contents {
	padding: 5px; /* 上下左右 */
	padding-bottom: 45px; /* 下のラインの下 */
}
article > .Contents > div:last-of-type {
	padding-bottom: 20px; /*下のラインの上*/
	border-bottom: 4px solid var(--WhiteColor); /* 下のライン */
}
article > .Contents a {
	color: rgba(252,200,0,1); /* 向日葵色 ひまわりいろ */
	font-weight: 600;
	text-shadow: 0.5px 0.5px 0 var(--BlackColor),
				 -0.5px 0.5px 0 var(--BlackColor),
				 0.5px -0.5px 0 var(--BlackColor),
				 -0.5px -0.5px 0 var(--BlackColor); /* 文字の縁取り */
}
.seitennari {
	background-color: rgba(0,123,187,0.8); /* 紺碧 こんぺき */
	border-bottom-right-radius: 10px; /* ボックスの右下の角丸を指定 */
}
.tojisyakai {
	background-color: rgba(2,135,96,0.8); /* 常磐緑 ときわみどり */
	border-bottom-right-radius: 10px;
}
.event {
	background-color: rgba(162,32,65,0.8); /* 濃紅 こいくれない */
	border-bottom-right-radius: 10px;
}
/*見出し*/
article > .Contents > h1 {
	font-family: 'Kosugi Maru', sans-serif;
	text-shadow: 1px 1px 0 var(--WhiteColor),
				 -1px 1px 0 var(--WhiteColor),
				 1px -1px 0 var(--WhiteColor),
				 -1px -1px 0 var(--WhiteColor); /* 文字の縁取り */
	text-align: right;
	padding-right: 3px;
	margin-top: 20px; /* 見出しの上 */
}
.seitennari > .Contents > h1 {
	line-height: 3.2rem; /* borderとの間隔を調整 */
	font-size: 3.0rem;
	color: var(--ThemeColor);
	border-bottom: 4px solid var(--WhiteColor);
}
.tojisyakai > .Contents > h1 {
	line-height: 3.0rem; /* borderとの間隔を調整 */
	font-size: 2.8rem;
	color: var(--TojisyaColor);
	border-bottom: 4px solid var(--WhiteColor);
}
.event > .Contents > h1 {
	line-height: 3.0rem; /* borderとの間隔を調整 */
	font-size: 2.6rem;
	color: var(--EventColor);
	border-bottom: 4px solid var(--WhiteColor);
}
/*グループ１ 吹き出し*/
article .group1 {
	position: relative;
	width: 81%;
	min-height: 100px; /* 高さの最小値を指定 */
	border-radius: 10px; /* 角丸 */
	box-sizing: border-box;
	margin-top: 20px; /* 吹き出しの上 */
	border: 2px solid var(--WhiteColor); /*枠線*/
}
article .group1::after { /*画像*/
	content: "";
	position: absolute;
	width: 101px; /*画像サイズ*/
	height: 100px; /*画像サイズ*/
	background-image: url(images/Icon1m.png); /*画像*/
	background-repeat: no-repeat;
	bottom: -10px;
	right: -125px; /*タブレットの切り替わりを見て調整*/
}
article .group1 > p {
	padding: 5px;
}
article .group1 > p:nth-child(n+2) {
	padding-top: 10px;
}
article .group1 > p::before { /*三角*/
	content: "";
	position: absolute;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 16px solid var(--WhiteColor);
	left: calc(100% + 2px); /* 位置調整 2px:border */
	top: 50%; /* 位置調整 */
}
article .group1 > p::after { /*三角*/
	content: "";
	position: absolute;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	left: 100%; /* 位置調整 */
	top: calc(50% + 1px); /* 位置調整 */
}
.seitennari .group1 {
	background-color: var(--ThemeColor);
}
.tojisyakai .group1 {
	background-color: var(--TojisyaColor);
}
.event .group1 {
	background-color: var(--EventColor);
}
.seitennari .group1 > p::after {
	border-left: 14px solid var(--ThemeColor); /*三角*/
}
.tojisyakai .group1 > p::after {
	border-left: 14px solid var(--TojisyaColor); /*三角*/
}
.event .group1 > p::after {
	border-left: 14px solid var(--EventColor); /*三角*/
}
/*グループ２ 詳細*/
article .group2 {
	width: 97%;
	color: var(--BlackColor);
	margin: 30px auto 0; /* 詳細の上 */
}
article .group2 > dl {
	display: -webkit-flex;
	display: flex;
	background-color: var(--BlackColor);
	box-sizing: border-box;
	margin: 1px 0 0 0;
}
article .group2 > dl ul {
	list-style-type: none; /* リストマーカーを表示しない　*/
	margin: 0; /* リストマーカー分をつめる(IE) */
	padding: 0; /* リストマーカー分をつめる(Firefox) */
}
article .group2 > dl > dt {
	position: relative;
	flex-shrink: 0; /* 親要素の広さによって子要素が縮む(0:縮まない) */
	width: 100px; /* "日時"や"参加方法"などの項目を書くスペース */
	color: var(--WhiteColor);
	text-align: center;
	margin: auto 0;
}
article .group2 > dl > dt::after {
	content: "";
	position: absolute;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid var(--BlackColor);
	left: 100%; /* 位置調整 */
	top: 50%; /* 位置調整 */
	margin-top: -5px; /* 位置調整 -5pxは吹き出し分 */
}
article .group2 > dl > dd {
	flex-grow: 5; /* 親要素の広さによって子要素が伸びる */
	margin: 0; /* dlのインデント分を詰める。*/
	padding-left: calc(5px + 12px); /* 5pxは吹き出し、12pxは見て調整 */
}
article .group2 > dl > dd > ol {
	padding-left: 1.3em; /* olのインデント分を詰める。0だと数字が消えてしまう。pxだとfontsizeを変更するとズレてしまう。*/
}
article .group2 > dl > dd > #map_icon {
	margin-left: 16px; /* 見て調整 */
}
.seitennari .group2 > dl > dd {
	background-color: rgb(137,195,235,1); /* 勿忘草色 わすれなぐさいろ */
}
.tojisyakai .group2 > dl > dd {
	background-color: rgb(152,217,142,1); /* 若緑 わかみどり */
}
.event .group2 > dl > dd {
	background-color: rgb(240,144,141,1); /* 薄紅 うすべに */
}
/*グループ３ チェックリスト*/
article .group3 {
	margin-top: 30px; /* チェックリストの上 */
}
article .group3 > ul {
	list-style-type: none; /* リストマーカーを表示しない　*/
	margin: 0px; /* リストマーカー分をつめる(IE) */
	padding: 0px; /* リストマーカー分をつめる(Firefox) */
	position: relative;
	margin-left: 40px;
}
article .group3 > ul > li {
	position: relative;
	min-height: 100px;
	box-sizing: border-box;
	padding: 3px;
}
article .group3 > ul > li:first-of-type {
	border-top: 1px solid rgba(200,200,200,1);
	border-bottom: 1px solid rgba(200,200,200,1);
}
article .group3 > ul > li:nth-of-type(n+2) {
	border-bottom: 1px solid rgba(200,200,200,1);
}
article .group3 > ul > li::after {
	content: "";
	position: absolute;
	width: 19px; /*画像サイズ*/
	height: 18px; /*画像サイズ*/
	background-image: url(images/IconCK1.png); /*画像*/
	background-repeat: no-repeat;
	left: -30px;
	top: calc((100px - 18px) / 2);
}
/*グループ４ チラシ画像*/
article .group4 {
	padding-left: 3px;
	margin-top: 20px; /* チラシ画像の上 */
}
article .group4 > p {
	display: inline-block;
}
article .group4 .chirashi {
	margin-top: 5px;
	margin-left: 30px;
}
/*メディアクエリ*/
@media (min-width: 960px) { /* 横幅960px以上(PC) */
	.oshirase {
		width: 80vw;
	}
	article > .Contents a:hover {
		text-decoration: none;
	}
}
@media (max-width: 959px) { /* 横幅960px未満(タブレット＆スマホ) */
	main {
		width: 100vw;
	}
	/*グループ１ 吹き出し*/
	article .group1::after { /*画像*/
		width: 81px; /*画像サイズ*/
		height: 80px; /*画像サイズ*/
		background-image: url(images/Icon1s.png); /*画像*/
	}
	article .group1 > p {
		padding: 3px;
	}
}
@media (min-width: 500px) and (max-width: 959px) { /* 横幅500px以上960px未満(タブレット) */
	/*更新情報*/
	.seitennari > .ContentsTitle {
		background: -webkit-linear-gradient(left,aliceblue 75%,dodgerblue);
		background: linear-gradient(to right,aliceblue 75%,dodgerblue);
	}
	.seitennari > .ContentsTitle::before,
	.seitennari > .ContentsTitle::after {
		animation-duration: 25s;
	}
	@keyframes wave {
		0% {
			transform: translate(75%,-70%) rotate(0deg);
		}
		100% {
			transform: translate(75%,-70%) rotate(360deg);
		}
	}
	article > .ContentsTitle > .midashi > h1 {
		font-size: 1.8rem; /* 見出しのサイズ */
	}
	/*見出し*/
	.seitennari > .Contents > h1 {
		line-height: 3.0rem; /* borderとの間隔を調整 */
		font-size: 2.6rem;
	}
	.tojisyakai > .Contents > h1 {
		line-height: 2.6rem; /* borderとの間隔を調整 */
		font-size: 2.4rem;
	}
	.event > .Contents > h1 {
		line-height: 2.2rem; /* borderとの間隔を調整 */
		font-size: 2.0rem;
	}
	/*グループ１ 吹き出し*/
	article .group1::after { /*画像*/
		right: -100px;
	}
}
@media (max-width: 499px) { /* 横幅500px未満(スマホ) */
	/*更新情報*/
	.seitennari > .ContentsTitle {
		background: -webkit-linear-gradient(left,aliceblue 80%,dodgerblue);
		background: linear-gradient(to right,aliceblue 80%,dodgerblue);
	}
	.seitennari > .ContentsTitle::before,
	.seitennari > .ContentsTitle::after {
		height: 220%;
		animation-duration: 30s;
	}
	@keyframes wave {
		0% {
			transform: translate(105%,-50%) rotate(0deg);
		}
		100% {
			transform: translate(105%,-50%) rotate(360deg);
		}
	}
	article > .ContentsTitle > .midashi > h1 {
		font-size: 1.6rem; /* 見出しのサイズ */
	}
	/*グループ 共通*/
	article > .Contents {
		padding: 0;
		padding-bottom: 45px; /* 下のラインの下 */
	}
	/*見出し*/
	.seitennari > .Contents > h1 {
		line-height: 2.4rem; /* borderとの距離を調整 */
		font-size: 2.2rem;
	}
	.tojisyakai > .Contents > h1 {
		line-height: 2.2rem; /* borderとの距離を調整 */
		font-size: 2.0rem;
	}
	.event > .Contents > h1 {
		line-height: 2.0rem; /* borderとの距離を調整 */
		font-size: 1.6rem;
	}
	/*グループ１ 吹き出し*/
	article .group1 {
		width: 100vw;
	}
	article .group1::after { /*画像*/
		bottom: -90px;
		right: 5px;
	}
	article .group1 > p::before { /*三角*/
		transform: rotate(90deg); /*回転*/
		top: 100%; /* 位置調整 */
		left: 70%; /* 位置調整 */
	}
	article .group1 > p::after { /*三角*/
		transform: rotate(90deg); /*回転*/
		top: calc(100% - 2px); /* 位置調整 */
		left: calc(70% + 1px); /* 位置調整 */
	}
	/*グループ２ 詳細*/
	article .group2 {
		width: 100vw;
		margin-top: 100px; /* 詳細の上 */
}
	article .group2 > dl {
		position: relative;
		-webkit-flex-direction: column;
		flex-direction: column;
		margin-top: calc(2px + 1.2rem); /* 2px:上との間隔 */
	}
	article .group2 > dl > dt {
		position: absolute;
		top: -1.2rem;
		left: 1.2rem;
		width: 10.0rem; /* "日時"や"参加方法"などの項目を書くスペース */
		height: 2.4rem;
		line-height: 2.4rem;
		color: var(--WhiteColor);
		border-radius: 4px; /* 角丸 */
		text-align: center;
		background-color: var(--BlackColor);
		z-index: 1; /* 重なり順 */
	}
	article .group2 > dl > dt::after {
		display: none; /* 三角を非表示 */
	}
	article .group2 > dl > dd {
		padding-top: 1.6rem;
		padding-right: 5px;
		padding-left: 5px;
		margin: 0; /* dlのインデント分を詰める。*/
	}
	article .group2 > dl > dd > #map_icon {
		text-align: center;
		margin: 0;
	}
	/*グループ３ チェック*/
	article .group3 > ul > li {
		min-height: 150px;
	}
	article .group3 > ul > li::after {
		top: calc((150px - 18px) / 2);
	}
}
/* ----紹介・Ｑ＆Ａ、案内図---------------------------------------- */
article > #towa {
	padding: 5px; /* 上下左右 */
	padding-bottom: 20px;
}
article .group1 > .key {
	color: var(--BlackColor);
	text-shadow: 1px 1px 0 rgba(220,220,220,1),
				 -1px 1px 0 rgba(220,220,220,1),
				 1px -1px 0 rgba(220,220,220,1),
				 -1px -1px 0 rgba(220,220,220,1); /* 文字の縁取り */
	font-weight: 600;
}
article .group1 > .value {
	padding-left: 20px;
}
article #qa {
	padding-bottom: 20px; /* 一番最後の吹き出しの下 */
}
article #qa > div {
	width: 60%;
	min-height: 80px;
	border-radius: 10px; /* 角丸 */
	box-sizing: border-box;
}
article #qa > .question {
	position: relative;
	color: var(--BlackColor);
	font-weight: 600;
	background-color: rgba(200,200,200,1);
	margin: 20px 0 20px 15%; /*[上][右][下][左]*/
	border: 2px solid var(--WhiteColor);
}
article #qa > .question::before {
		content: "";
		position: absolute;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-right: 16px solid var(--WhiteColor);
		right: calc(100% + 2px);  /* 位置調整 2px:border */
		top: 50%; /* 位置調整 */
}
	article #qa > .question::after {
		content: "";
		position: absolute;
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		border-right: 14px solid rgba(200,200,200,1);
		right: 100%;  /* 位置調整 */
		top: calc(50% + 1px); /* 位置調整 */
}
article #qa > .answer {
	position: relative;
	background-color: var(--ThemeColor);
	margin-left: 23%;
	border: 2px solid var(--WhiteColor);
}
article #qa > .answer::before {
	content: "";
	position: absolute;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 16px solid var(--WhiteColor);
	left: calc(100% + 2px);  /* 位置調整 2px:border */
	top: 50%; /* 位置調整 */
}
article #qa > .answer::after {
	content: "";
	position: absolute;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 14px solid var(--ThemeColor);
	left: 100%;  /* 位置調整 */
	top: calc(50% + 1px); /* 位置調整 */
}
article #qa > div > p {
	position: relative;
	padding: 5px;
}
article #qa > .question > p::after {
	content: "";
	position: absolute;
	width: 69px; /*画像サイズ*/
	height: 100px; /*画像サイズ*/
	background-image: url(images/Icon4m.png); /*画像*/
	background-repeat: no-repeat;
	top: -15px; /*見て調整*/
	left: -105px; /*見て調整*/
}
article #qa > .answer > p:last-of-type::after {
	content: "";
	position: absolute;
	width: 101px; /*画像サイズ*/
	height: 100px; /*画像サイズ*/
	background-image: url(images/Icon1m.png); /*画像*/
	background-repeat: no-repeat;
	bottom: -10px; /*見て調整*/
	right: -125px; /*タブレットの切り替わりを見て調整*/
}
article #qa a,
article #towa a {
	color: rgba(252,200,0,1); /* 向日葵色 ひまわりいろ */
	font-weight: 600;
	text-shadow: 0.5px 0.5px 0 var(--BlackColor),
				 -0.5px 0.5px 0 var(--BlackColor),
				 0.5px -0.5px 0 var(--BlackColor),
				 -0.5px -0.5px 0 var(--BlackColor); /* 文字の縁取り */
}
/* マップ */
article .map {
	padding: 10px;
}
article .map > h1 {
	font-size: 1.8rem;
}
/* 総合福祉センター内案内図 */
article .map > .info {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap; /* 子要素を折り返し、複数行に上から下へ配置 */
	-webkit-justify-content: space-around;
	justify-content: space-around; /* 均等配置(左右隙間あり) */
	position: relative;
	width: 400px; /* 親画像とサムネイルの横並びを考慮した幅 */
	margin-top: 10px;
	margin-bottom: 10px;
}
article .map > .info img {
	display: block;
	margin: 0;
}
article .map > .info > picture {
	position: absolute;
}
article .map > .info > picture > img {
	transition-duration: 1s;
	opacity: 0; /* チェックされていない時は透明(非表示)に */
}
article .map > .info > input[type="radio"] {
	display: none; /* ラジオボタンは常に非表示 */
}
article .map > .info > label {
	margin: 220px 0 0 0; /* 親画像の高さ+マージン */
	border: 2px solid rgba(252,200,0,1); /* 向日葵色 ひまわりいろ */
	cursor: pointer;
	transition-duration: 0.5s;
	transition-timing-function: ease;
}
article .map > .info > input.switch:checked + label {
	border: 2px solid var(--BlackColor);
}
article .map > .info > input.switch:checked + label + picture > img {
	opacity: 1; /* チェックされたら不透明(表示)に */
}
/*メディアクエリ*/
@media (min-width: 960px) { /* 横幅960px以上(PC) */
	article #qa a:hover,
	article #towa a:hover {
		text-decoration: none;
	}
	/* メールフォーム */
	article > #form_pctab {
		height: 495px; /* 見て調整 */
		width: 100%;
		border: 0;
	}
	article > #form_phone {
		display: none; /* スペースごと非表示 */
	}
	/* Yahoo!地図のスペース */
	article .map > #pc_tab {
		height: 400px; /* 地図の高さ */
		width:  400px; /* 地図の横幅 */
		background-color: white;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	article .map > #phone {
		display: none; /* スペースごと非表示 */
	}
}
@media (max-width: 959px) { /* 横幅960px未満(タブレット＆スマホ) */
	article #qa > .question,
	article #qa > .answer {
		margin-left: auto;
		margin-right: auto;
	}
	article #qa > .question > p::after {
		width: 55px; /*画像サイズ*/
		height: 80px; /*画像サイズ*/
		background-image: url(images/Icon4s.png); /*画像*/
		background-repeat: no-repeat;
	}
	article #qa > .answer > p:last-of-type::after {
		width: 81px; /*画像サイズ*/
		height: 80px; /*画像サイズ*/
		background-image: url(images/Icon1s.png); /*画像*/
		background-repeat: no-repeat;
	}
}
@media (min-width: 500px) and (max-width: 959px) { /* 横幅500px以上960px未満(タブレット) */
	article #qa > .question > p::after {
		top: 0; /*見て調整*/
		left: -95px; /*見て調整*/
	}
	article #qa > .answer > p:last-of-type::after {
		bottom: -10px; /*見て調整*/
		right: -105px; /*スマホの切り替わりを見て調整*/
	}
	/* メールフォーム */
	article > #form_pctab {
		height: 495px; /* 見て調整 */
		width: 100%;
		border: 0;
	}
	article > #form_phone {
		display: none; /* スペースごと非表示 */
	}
	/* Yahoo!地図のスペース */
	article .map > #pc_tab {
		height: 400px; /* 地図の高さ 見て調整 */
		width:  400px; /* 地図の横幅 見て調整 */
		background-color: white;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	article .map > #phone {
		display: none; /* スペースごと非表示 */
	}
}
@media (max-width: 499px) { /* 横幅500px未満(スマホ) */
	article > #towa {
		padding: 0;
		padding-bottom: 100px; /* 吹き出しの下 */
	}
	article #qa {
		padding-bottom: 110px; /* 一番最後の吹き出しの下 */
	}
	article #qa > div {
		width: 100vw;
	}
	article #qa > .question {
		margin: 100px auto;
	}
	article #qa > div:first-child {
		margin-top: 20px; /* 一番最初の吹き出しの上 */
	}
	article #qa > .question::before {
		transform: rotate(-90deg); /*回転*/
		top: calc(100% + 2px);  /* 位置調整 2px:border */
		left: 20%; /* 位置調整 */
	}
	article #qa > .question::after {
		transform: rotate(-90deg); /*回転*/
		top: 100%;  /* 位置調整 */
		left: calc(20% + 1px); /* 位置調整 */
	}
	article #qa > .answer::before {
		transform: rotate(90deg); /*回転*/
		top: calc(100% + 2px);  /* 位置調整 2px:border */
		left: 70%; /* 位置調整 */
	}
	article #qa > .answer::after {
		transform: rotate(90deg); /*回転*/
		top: 100%;  /* 位置調整 */
		left: calc(70% + 1px); /* 位置調整 */
	}
	article #qa > .question > p::after {
		top: 90px; /*見て調整*/
		left: 5px; /*見て調整*/
	}
	article #qa > .answer > p:last-of-type::after {
		bottom: -90px; /*見て調整*/
		right: 5px;
	}
	/* メールフォーム */
	article > #form_pctab {
		display: none; /* スペースごと非表示 */
	}
	article > #form_phone {
		height: 625px; /* 見て調整 */
		width: 100%;
		border: 0;
	}
	/* Yahoo!地図のスペース */
	article .map > #pc_tab {
		display: none; /* スペースごと非表示 */
	}
	article .map > #phone {
		height: 300px; /* 地図の高さ 見て調整 */
		width:  300px; /* 地図の横幅 見て調整 */
		background-color: white;
		margin: 10px auto;
	}
	/* 総合福祉センター内案内図 */
	article .map > .info {
		width: 200px; /* 親画像とサムネイルの横並びを考慮した幅 */
		margin: 10px auto;
	}
	article .map > .info > label {
		margin: 415px 0 0 0; /* 親画像の高さ+マージン */
	}
}
/* ----リンク------------------------------------------------------ */
article > .ConsultationDesk {
	list-style-type: none; /* リストマーカーを表示しない　*/
	margin: 0px; /* リストマーカー分をつめる(IE) */
	padding: 0px; /* リストマーカー分をつめる(Firefox) */
	padding: 5px;
}
article > .ConsultationDesk > li {
	padding-left: 18px;
	border-bottom: 2px dotted var(--BlackColor);
}
article > .ConsultationDesk a {
	display: block;
	position: relative;
	color: var(--HyojunMojiIro);
}
article > .ConsultationDesk a::before {
	content: "";
	position: absolute;
	top: 4px; /* 見て調整 */
	left: -18px; /* 見て調整 */
	width: 14px;
	height: 14px;
	border-radius: 10px;
	background-color: rgba(252,200,0,1);
}
article > .ConsultationDesk a::after {
	content: "";
	position: absolute;
	top: 7.5px; /* 見て調整 */
	left: -14px; /* 見て調整 */
	width: 0;
	height: 0;
	border-left: 7px solid var(--BlackColor);
	border-top: 3.5px solid transparent;
	border-bottom: 3.5px solid transparent;
}
article > .ConsultationDesk span { /* 相談窓口の所のボタン的なヤツ */
	display: inline-block;
	width: 68px;
	font-size: 13px;
	color: var(--HyojunMojiIro);
	background-color: rgba(184,210,0,1); /* 黄緑 きみどり */
	font-weight: 600;
	letter-spacing: 2px;
	text-align: center;
	border-radius: 5px;
	text-shadow: 1px 1px rgba(105,105,105,1);
	padding-top: 1.5px;
	margin-left: 5px;
	margin-bottom: 2px;
}
/* ----フッター---------------------------------------------------- */
footer {
	width: 80vw;
	margin: 0 auto;
	font-size: 1.4rem;
	margin-top: 3vh;
	background-color: rgba(105,105,105,1);
}
footer > ul {
	list-style-type: none; /* リストマーカーを表示しない　*/
	margin: 0px; /* リストマーカー分をつめる(IE) */
	padding: 0px; /* リストマーカー分をつめる(Firefox) */
	display: table;
	width: calc(100% - 10px); /* 10pxはpadding左右 */
	padding: 0 5px;
	/*border: 1px solid rgba(255,255,255,1);*/
}
footer > ul > li {
	display: table-cell;
	width: calc((100% - 10px) / 3);
	line-height: 2.4rem;
}
footer > ul > li.space {
	visibility : hidden; /* スペースを残したまま非表示 */
}
footer a {
	color: var(--WhiteColor);
	text-decoration: none;
}
footer > p {
	text-align: right;
	padding-right: 10px;
}
/*メディアクエリ*/
@media (min-width: 960px) { /* 横幅960px以上(PC) */
	article > .ConsultationDesk a:hover {
		color: var(--BlackColor);
		text-decoration: none;
	}
	footer a:hover {
		color: var(--BlackColor);
		text-decoration: none;
	}
}
@media (max-width: 959px) { /* 横幅960px未満(タブレット＆スマホ) */
	footer {
		width: 100vw;
	}
	footer > ul > li {
		line-height: 4.0rem;
	}
}
@media (min-width: 500px) and (max-width: 959px) { /* 横幅500px以上960px未満(タブレット) */
}
@media (max-width: 499px) { /* 横幅500px未満(スマホ) */
	footer {
		font-size: 1.2rem;
	}
}
