@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*
=カラー=
・オレンジ・・・#F08300
・紺・・・#004EA2
・ビジョン背景の薄いオレンジ・・・#FFF9E6
・ビジョン背景のグレー・・・#F0F0F1
・Q&AのQの帯・・・#FCDCB7
*/

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(3rem - 1px);
}
@media (max-width: 50rem) {
	html {
		scroll-padding-top: calc(6rem - 1px);
	}
}

:not(span) {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	box-sizing: border-box;
}
* {
	color: #111;
	letter-spacing: calc(1em / 12);
	max-height: 99999px;
}
a:any-link {
//	text-underline-offset: calc(1em / 8);
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
}
label, button, summary {
	cursor: pointer;
}
li {
	list-style: none;
}

body {
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	margin: 0;
	padding: 6rem 0 0 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	25% { opacity: 0; }
	100% { opacity: 1; }
}

/* Safariだけフォントが太くなる対策 */
::-webkit-full-page-media, :future, :root body {
	-webkit-font-smoothing: antialiased;
}
/* Safariのsummaryの三角を消す */
summary::-webkit-details-marker {
	display: none
}

/*==================== ヘッダー ====================*/
@media (min-width: 50.001rem) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 6rem;
		background: white;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.5rem min(4vw, 2rem) 0;
		z-index: 99;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
		transition: .5s;
	}
	header h1 img {
		width: auto;
		height: 4rem;
		transition: .5s;
	}
	header ul {
		display: flex;
		align-items: center;
	}
	header ul li + li {
		margin-left: 2rem;
	}
	@media (max-width: 60rem) {
		header ul li + li {
			margin-left: 1rem;
		}
	}
	header ul li a:any-link {
		display: block;
		font-size: 1.125rem;
		font-weight: 700;
		padding: 0.5rem 0.25ewm;
	}
	header.is-animation {
		height: 3rem;
		padding-top: 0;
	}
	header.is-animation h1 img {
		height: 2rem;
	}
}
@media (max-width: 50rem) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 6rem;
		background: white;
		z-index: 99;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
	}
	header h1 {
		width: 100%;
		height: 4rem;
		padding: 0 min(2.5vw, 1rem);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header h1 img {
		display: block;
		height: 3rem;
	}
	header ul {
		height: 2rem;
		display: flex;
		justify-content: center;
		background: #FFF9E6;
	}
	header ul li {
		margin: 0;
	}
	header ul li + li {
		margin-left: 1rem;
	}
	header ul li a:any-link {
		font-size: 1.05rem;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 2rem;
		font-weight: 600;
	}
	header ul li:last-child {
		position: fixed;
		top: 0.667rem;
		right: 2.5vw;
	}
	header ul li:last-child a:any-link {
		font-size: 1.25rem;
		padding: 1em 1.125em;
		line-height: 1;
		color: white;
		background: #F08300;
		border-radius: 0.667em;
	}
}
@media (max-width: 30rem) {
	header ul {
		justify-content: space-evenly;
	}
	header ul li + li {
		margin-left: 0;
	}
	header ul li a:any-link {
		font-size: 3.75vw;
	}
}

/*==================== フッター ====================*/
footer address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: min(5vw, 2.5rem) 0;
	background: #F08300;
}
footer address > * {
	color: white;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0.5rem;
}
footer address a:any-link {
	color: white;
}
footer address h1 {
	font-weight: 600;
	font-size: 1.25rem;
}
footer address a.button {
	font-size: 1.125rem;
	margin: 0.5rem 0;
	padding: 0.5rem 1rem;
	background: white;
	color: #F08300;
	border-radius: 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	transition: .2s;
}
footer address a.button::before {
	content: '';
	display: block;
	width: 2.5rem;
	height: 2rem;
	background: url(./images/yubisashi.svg) center center no-repeat;
	background-size: contain;
	margin-right: 0.25rem;
}
footer address a.button:hover {
	box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.25);
	transform: scale(1.05);
}
footer ul {
	display: flex;
	margin: min(8vw, 4rem) 0 2rem min(4vw, 2rem);
}
footer ul li + li {
	margin-left: min(2vw, 1rem);
}
footer ul li a:any-link {
	font-size: 0.95rem;
	padding: 0.5rem;
}
footer ul li a:hover {
	text-decoration: underline;
}
footer #copyright {
	margin: 2rem 0 2rem min(5vw, 2.5rem);
	font-size: 0.75rem;
}
@media (max-width: 50rem) {
	footer address {
		flex-direction: column;
	}
	footer address a.button {
		margin-top: 1rem;
	}
	footer ul {
		justify-content: center;
		margin-left: 0;
	}
	footer #copyright {
		margin: 2rem 0;
		text-align: center;
	}
}
#back_to_top {
	position: fixed;
	bottom: min(3vw, 1.5rem);
	right: min(3vw, 1.5rem);
	transform: rotateY(270deg);
	transition: 1s;
	border-radius: 3rem;
	z-index: 8;
}
#back_to_top a:any-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(9vw, 4.5rem);
	height: min(9vw, 4.5rem);
	color: #CCC;
	border: solid 0.1em #CCC;
	border-radius: 3rem;
	font-size: min(5vw, 2.5rem);
	padding-bottom: min(0.5vw, 0.25rem);
	font-weight: 700;
	letter-spacing: 0;
}
#back_to_top.is-animation {
	transform: rotateY(0deg);
}

/*==================== トップページメイン画像（ヒーローイメージ） ====================*/
@media (min-aspect-ratio: 2/3) {
	#hero {
		width: 100%;
		height: calc(75vh + 3rem);
		height: calc(75lvh + 3rem);
		background: #F08300;
		border-top: solid 1rem #F08300;
		
	}
	#hero > div {
		width: 57vh;
		height: 75vh;
		height: 75lvh;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	#hero > div img:nth-child(1) {
		position: absolute;
		top: 2vh;
		left: 0;
		width: auto;
		height: 73.5%;
	}
	#hero > div img:nth-child(2) {
		position: absolute;
		top: 0;
		right: 0;
		width: 115%;
		height: 76%;
		object-fit: cover;
		object-position: right -9vh top -9vh;
	}
	#hero > div img:nth-child(3) {
		position: absolute;
		bottom: 1vh;
		left: 0;
		width: 100%;
	}
}
@media (max-aspect-ratio: 2/3) {
	#hero {
		width: 100%;
		height: calc(100vw + 2.5rem);
		background: #F08300;
		padding-top: 1rem;
	}
	#hero div {
		width: 80vw;
		height: 100vw;
		margin: 0 auto;
		position: relative;
	}
	#hero > div img:nth-child(1) {
		position: absolute;
		top: 4vw;
		left: 0;
		width: auto;
		height: 70vw;
	}
	#hero > div img:nth-child(2) {
		position: absolute;
		top: 0;
		right: 0;
		width: 110%;
		height: 74vw;
		object-fit: cover;
		object-position: right -8vw top -11vw;
	}
	#hero > div img:nth-child(3) {
		position: absolute;
		bottom: 2vw;
		left: 0;
		width: 100%;
	}
}
#challenge {
	background: #F08300;
	border-bottom: solid thin #F08300;
}
#challenge p {
	text-align: center;
	color: white;
	font-size: min(8vw, 5rem);
	font-weight: 700;
	padding: min(4vw, 2rem) 0;
}
#challenge p::before {
	content: '\\';
	margin-right: 0.25em;
	font-weight: 300;
}
#challenge p::after {
	content: '/';
	margin-left: 0.25em;
	font-weight: 300;
}
#challenge ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: calc(90% - 2.5vw);
	margin: 0 auto min(10vw, 5rem);
	padding: 0.25rem;
	background: white;
}
#challenge ul li {
	width: calc((100% - 2rem) / 4);
	margin: 0.25rem;
}
#challenge ul li.movie {
	width: 100%;
}
#challenge ul li.movie * {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 65rem) {
	#challenge ul li {
		width: calc((100% - 1rem) / 2);
	}
}
@media (max-width: 40rem) {
	#challenge ul li {
		width: 100%;
	}
}
#challenge ul li img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 2rem;
	background: #F3F3F3;
}
#challenge ul li figure {
	position: relative;
}
#challenge ul li figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.25);
	color: white;
	padding: 0.5rem;
	text-align: center;
	font-size: min(3.5vw, 0.9rem);
	line-height: 1.25;
}
/*==================== セクション共通 ====================*/
section {
	border-top: solid thin white;
	padding: min(10vw, 4rem) 0;
	width: 100%;
	overflow: hidden;
}
section h2 {
	font-size: 3.25rem;
	font-weight: 700;
}



/*==================== トップページのお知らせ / 活動報告 ====================*/
#top_news {
	background: #FCDCB7;
}
#top_news > * {
	width: 64rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
}
#top_news > h2 {
	text-align: center;
	margin-bottom: min(6vw, 3rem);
}
@media (max-width: 70rem) {
	#top_news > h2 {
		font-size: 2rem;
	}
}
#top_news > ul {
	max-width: calc(100% - 10vw);
}
#top_news > ul li {
	border: solid medium #F08300;
	border-radius: 1rem;
	background: white;
	overflow: hidden;
}
#top_news > ul li a {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#top_news > ul li + li {
	margin-top: min(5vw, 2.5rem);
}
#top_news > ul li div:first-child {
	padding: 2.5rem 3rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 50.001rem ) {
	#top_news > ul li div:first-child {
		width: calc(100% - 21rem);
	}
}
#top_news > ul li div:first-child p:nth-of-type(1) {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}
#top_news > ul li div:first-child p span.date {
	font-size: 1.125rem;
	font-weight: 700;
}
#top_news > ul li div:first-child p span.category {
	background: #F08300;
	padding: 0.25em 1em;
	border-radius: 1rem;
	color: white;
	font-size: 0.9rem;
}
#top_news > ul li div:first-child h3 {
	font-weight: 700;
	font-size: 1.667rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	max-height: calc(1.667rem * 1.5 * 3);
	overflow: hidden; 
}
#top_news > ul li div:first-child p.lead {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#top_news > ul li div:last-child {
	background: #EEE;
	width: 21rem;
	height: 14rem;
	flex: none;
}
#top_news > ul li div:last-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 50rem) {
	#top_news > * {
		width: 30rem;
		max-width: calc(100% - 10vw);
	}
	#top_news > h2 {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		margin-bottom: 4rem;
		position: relative;
	}
	#top_news > h2::after {
		content: '';
		display: block;
		width: 5rem;
		height: 2px;
		background: #111;
		position: absolute;
		top: 3.75rem;
		left: calc(50% - 2.5rem);
	}
	#top_news > ul li a {
		flex-direction: column;
	}
	#top_news > ul li div:last-child {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	#top_news > ul li div:first-child {
		padding: min(6vw, 3rem) min(5vw, 2.5rem) min(4vw, 2rem);
	}
	#top_news > ul li div:first-child h3 {
		font-size: 1.25rem;
	}
}

#top_news > div {
	display: flex;
	justify-content: center;
	margin-top: min(8vw, 4rem);
}
#top_news > div a:any-link {
	color: white;
	background: #F08300;
	font-size: min(5vw, 1.25rem);
	padding: 1em 4em;
	font-weight: 700;
}
/*==================== メッセージ ====================*/
#message > div {
	width: 64rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
#message > div h2 {
	width: 20rem;
	flex: none;
	position: relative;
}
#message > div h2::after {
	content: '';
	width: 200rem;
	height: 1px;
	background: #111;
	position: absolute;
	top: 4rem;
	right: 3.5rem;
}
#message > div p {
	width: 44rem;
	font-size: 1.25rem;
	line-height: 1.75;
	font-weight: 600;
}
@media (max-width: 70rem) {
	#message > div {
		width: 40rem;
		max-width: calc(100% - 15vw);
		margin: 0 auto;
		display: block;
	}
	#message > div h2 {
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin: 0 0 3rem;
		padding: 0;
		position: relative;
	}
	#message > div h2::after {
		content: '';
		width: 5rem;
		height: 2px;
		background: #111;
		position: absolute;
		top: 3.75rem;
		left: calc(50% - 2.5rem);
	}
	#message > div p {
		width: 100%;
		font-weight: 500;
	font-size: 1.125rem;
	}
}

/*==================== プロフィール ====================*/
#profile {
	background: #F08300;
	padding: min(10vw, 5rem) 0;
}
#profile > div {
	width: 64rem;
	margin: 0 auto;
	display: grid;
	grid-template-rows: 3.25rem auto auto auto;
	grid-template-columns: 44rem 20rem;
}
#profile > div h2 {
	grid-area: 1 / 2 / 2 / 3;
	color: white;
	position: relative;
}
#profile > div h2::after {
	content: '';
	width: 200rem;
	height: 1px;
	background: white;
	position: absolute;
	top: 4rem;
	left: 0;
}
#profile > div dl {
	grid-area: 1 / 1 / 3 / 2;
	margin-top: 0.5rem;
}
#profile > div h3 {
	grid-area: 3 / 1 / 4 / 2;
	margin-top: 3rem;
	font-size: 1rem;
	color: white;
	font-weight: 600;
}
#profile > div ul {
	grid-area: 4 / 1 / 5 / 2;
}
#profile > div figure {
	grid-area: 2 / 2 / 5 / 3;
	position: relative;
}

#profile > div dl div {
	display: flex;
	padding: 1.25rem 0.25rem;
	border-top: solid thin white;
	width: 41rem;
}
#profile > div dl div:last-child {
	border-bottom: solid thin white;
}
#profile > div dl div dt {
	font-size: 1.05rem;
	font-weight: 700;
	color: white;
	width: 10rem;
}
#profile > div dl div dd {
	font-size: 1.05rem;
	font-weight: 700;
	color: white;
}
#profile > div ul li {
	color: white;
	margin: 0.7rem 0;
	line-height: 1.4;
	font-weight: 600;
}
#profile > div figure img {
	width: auto;
	height: 38rem;
	position: absolute;
	top: 3rem;
	left: 2rem;
}

@media (max-width: 70rem) {
	#profile > div {
		width: 40rem;
		max-width: calc(100% - 5vw);
		margin: 0 auto;
		display: block;
		position: relative;
	}
	#profile > div h2 {
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin: 0 0 3rem;
		padding: 0;
		position: relative;
	}
	#profile > div h2::after {
		content: '';
		width: 5rem;
		height: 2px;
		background: white;
		position: absolute;
		top: 3.75rem;
		left: calc(50% - 2.5rem);
	}
	#profile > div dl {
		width: calc(40vw + 6rem);
		max-width: 30rem;
		padding-top: min(5vw, 2.5rem);
	}
	#profile > div dl div {
		width: 100%;
		padding: 0.5rem 0.25rem;
	}
	#profile > div dl div dt {
		font-size: 0.9rem;
		width: 40%;
		line-height: 1.5;
		padding-right: 0.25rem;
	}
	#profile > div dl div dd {
		font-size: 0.9rem;
		width: 60%;
		line-height: 1.5;
	}
	#profile > div figure {
		position: absolute;
		top: 0;
		left: calc(40vw + 4rem);
	}
	#profile > div figure img {
		width: 39vw;
		max-width: 11em;
		height: auto;
		position: absolute;
		top: 3rem;
		left: 2rem;
	}
}

/*==================== フォト ====================*/
#photo ul {
	display: flex;
}
#photo ul li {
	width: calc(100% / 4);
}
#photo ul li img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/*==================== ビジョン ====================*/
#vision {
	padding-bottom: 0;
}
#vision h2 {
	width: 64rem;
	margin: 0 auto;
	position: relative;
}
#vision h2::after {
	content: '';
	width: 200rem;
	height: 1px;
	background: #111;
	position: absolute;
	top: 4rem;
	right: 51rem;
}
#vision h2 + p {
	width: 64rem;
	margin: min(7vw, 3.5rem) auto min(4vw, 2rem);
}
#vision h2 + p em {
	font-size: 2.25rem;
	font-weight: 700;
}
@media (max-width: 70rem) {
	#vision h2 {
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin: 0 0 3rem;
		padding: 0;
		position: relative;
	}
	#vision h2::after {
		content: '';
		width: 5rem;
		height: 2px;
		background: #111;
		position: absolute;
		top: 3.75rem;
		left: calc(50% - 2.5rem);
	}
	#vision h2 + p {
		width: calc(100% - 5vw);
		text-align: center;
		line-height: 1.5;
		padding-top: 0.5rem;
	}
	#vision h2 + p em {
		font-size: clamp(1.5rem, 4vw, 2rem);
		font-weight: 600;
		line-height: 1.5;
		word-break: keep-all;
	}
}
#vision #v1,
#vision #v3 {
	background: #FFF9E6;
	padding: min(7vw, 3.5rem) 0;
}
#vision #v2 {
	background: #F0F0F1;
	padding: min(7vw, 3.5rem) 0;
}
#v1 h3,
#v2 h3,
#v3 h3 {
	display: grid;
	grid-template-rows: min(6vw, 3rem) min(6vw, 3rem);
	grid-template-columns: min(12vw, 6rem) auto;
	width: 64rem;
	max-width: calc(100% - 5vw);
	margin: 0 auto;
}
#v1 h3 span:nth-child(1),
#v2 h3 span:nth-child(1),
#v3 h3 span:nth-child(1) {
	grid-area: 1 / 1 / 3 / 2;
	border: solid medium #004EA2;
	color: #004EA2;
	font-size: min(10vw, 5rem);
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
	padding-bottom: min(1vw, 0.5rem);
	background: white;
}
#v1 h3 span:nth-child(2),
#v2 h3 span:nth-child(2),
#v3 h3 span:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
	width: fit-content;
	color: white;
	background: #004EA2;
	height: min(3.5vw, 1.75rem);
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 0.25rem;
	font-size: min(3vw, 1rem);
	font-weight: 600;
	margin-left: min(2vw, 1rem);
	padding: 0.125em min(2vw, 1rem);
}
#v1 h3 span:nth-child(3),
#v2 h3 span:nth-child(3),
#v3 h3 span:nth-child(3) {
	grid-area: 2 / 2 / 3 / 3;
	color: #004EA2;
	font-size: min(6.25vw, 2.75rem);
	font-weight: 700;
	padding-left: min(2vw, 1rem);
}
@media (max-width: 50rem) {
	#v1 h3 span:nth-child(3),
	#v2 h3 span:nth-child(3),
	#v3 h3 span:nth-child(3) {
		letter-spacing: 0;
	}
}
#v1 dl,
#v2 dl,
#v3 dl {
	width: 64rem;
	max-width: calc(100% - 5vw);
	margin: 1rem auto 0;
	background: white;
	border-top: solid thick #004EA2;
}
#v3 dl {
	margin-bottom: min(4vw, 2rem);
}
#v1 dl div,
#v2 dl div,
#v3 dl div {
	padding: 1rem 0;
	border-bottom: solid thick #004EA2;
}
#v1 dl div dt,
#v2 dl div dt,
#v3 dl div dt {
	font-size: min(5.9vw, 1.5rem);
	font-weight: 700;
	color: #004EA2;
	margin: 0 0 0 7rem;
	letter-spacing: 0;
}
#v1 dl div dd p,
#v2 dl div dd p,
#v3 dl div dd p {
	margin: 0.75rem 2rem 0.5rem 7rem;
	line-height: 1.75;
	font-size: 1.05rem;
}
#v1 dl div dd p:first-child,
#v2 dl div dd p:first-child,
#v3 dl div dd p:first-child {
	line-height: 2.25;
}
#v1 dl div dd p:first-child::before,
#v2 dl div dd p:first-child::before,
#v3 dl div dd p:first-child::before {
	content: '';
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: url(./images/yajirushi.svg) center center no-repeat;
	background-size: contain;
	margin-right: 0.5rem;
	position: relative;
	top: 0.5rem;
}
#v1 dl div dd p em,
#v2 dl div dd p em,
#v3 dl div dd p em {
	font-size: min(4.5vw, 1.5rem);
	font-weight: 600;
	background: linear-gradient(white, white 75%, #FE0 75.001%, #FE0);
}
@media (max-width: 40rem) {
	#v1 dl div dt,
	#v2 dl div dt,
	#v3 dl div dt {
		margin: 0;
		text-align: center;
	}
	#v1 dl div dd p,
	#v2 dl div dd p,
	#v3 dl div dd p {
		margin: 0.75rem 2.5vw 0.5rem;
	}
	#v1 dl div dd p:first-child::before,
	#v2 dl div dd p:first-child::before,
	#v3 dl div dd p:first-child::before {
		display: flex;
		justify-content: center;
		width: 100%;
		transform: rotate(90deg);
		position: relative;
		top: -0.125rem;
	}
}

/*==================== Q&A ====================*/
#q_and_a {
	background: #F08300;
}
#q_and_a h2 {
	width: 64rem;
	margin: 0 auto min(5vw, 2.5rem);
	text-align: right;
	padding-right: 12rem;
	color: white;
	position: relative;
}
#q_and_a h2::after {
	content: '';
	width: 200rem;
	height: 1px;
	background: white;
	position: absolute;
	top: 4rem;
	left: 44.5rem;
}
@media (max-width: 70rem) {
	#q_and_a h2 {
		width: 100%;
		font-size: 2rem;
		text-align: center;
		margin: 0 0 3rem;
		padding: 0;
		position: relative;
	}
	#q_and_a h2::after {
		content: '';
		width: 5rem;
		height: 2px;
		background: white;
		position: absolute;
		top: 3.75rem;
		left: calc(50% - 2.5rem);
	}
}
#q_and_a h2 + p {
	font-size: min(5vw, 2.5rem);
	font-weight: 600;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem 0;
	position: relative;
}
#q_and_a h2 + p img {
	width: 9rem;
	height: auto;
	margin-right: 1.5rem;
}
@media (max-width: 70rem) {
	#q_and_a h2 + p {
		padding-top: 11rem;
	}
	#q_and_a h2 + p img {
		position: absolute;
		top: 0;
		left: calc(50% - 4.5rem);
	}
}
#q_and_a h2 + p span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(20vw, 8rem);
	height: min(20vw, 8rem);
	border-radius: 50%;
	text-indent: calc(1em / 12);
	margin: 0 0.25rem;
	line-height: 1;
	white-space: nowrap;
}
#q_and_a h2 + p span:nth-of-type(1) {
	background: #004EA2;
	color: white;
	font-size: min(8vw, 3rem);
}
#q_and_a h2 + p span:nth-of-type(2) {
	background: white;
	color: #004EA2;
	font-size: min(8vw, 3rem);
}
#q_and_a h2 + p span:nth-of-type(3) {
	background: #004EA2;
	color: white;
	font-size: min(6vw, 2.5rem);
}
#q_and_a h2 + p + p {
	text-align: center;
	margin: 2rem 2.5vw 1.25rem;
	line-height: 1.5;
}
#q_and_a h2 + p + p small {
	font-size: 1rem;
	color: white;
	font-weight: 500;
}
#gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
#gallery li:last-child {
	display: none;
}
#gallery li {
	width: calc(100% / 5);
}
@media (max-width: 60rem) {
	#gallery li:last-child {
		display: block;
	}
	#gallery li {
		width: calc(100% / 3);
	}
}
#gallery li img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
#q_and_a > div {
	width: 64rem;
	max-width: calc(100% - 5vw);
	margin: min(8vw, 4rem) auto min(4vw, 2rem);
	background: white;
	border: solid thin white;
}
#q_and_a > div details {
	margin: 0.25rem;
}
#q_and_a > div details summary {
	font-size: clamp(1.05rem, 3vw, 1.125rem);
	font-weight: 500;
	background: #FCDCB7;
	padding: 0.5rem 1.5rem 0.5rem 0.5rem;
	line-height: 1.5;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .2s;
}
#q_and_a > div details summary:hover {
	filter: brightness(110%);
}
#q_and_a > div details summary::after {
	content: '＋';
	margin-left: 1rem;
	flex: none;
	transition: .2s;
}
#q_and_a > div details[open] summary::after {
	content: '－';
}
#q_and_a > div details summary span:first-child {
	font-size: clamp(1.25rem, 4vw, 1.5rem);
	margin-right: 0.75rem;
	width:3rem;
	flex: none;
	text-align: right;
	white-space: nowrap;
	flex: none;
}
#q_and_a > div details summary span:nth-child(2) {
	flex-grow: 1;
}
#q_and_a > div details p {
	font-size: 1.05rem;
	line-height: 1.75;
	align-items: center;
	margin: 1rem 2.5vw 2rem 0;
	padding-left: 4rem;
	position: relative;
}
#q_and_a > div details p span {
	font-size: clamp(1.25rem, 4vw, 1.5rem);
	font-weight: 500;
	position: absolute;
	top: -0.35rem;
	left: 0;
	width: 3rem;
	text-align: right;
}

/*==================== プライバシーポリシー ====================*/
#page_title {
	height: min(20vw, 10rem);
	background: #F08300;
	display: flex;
	justify-content: center;
	align-items: center;
}
#page_title h2 {
	color: white;
	width: 70rem;
	max-width: calc(100% - 10vw);
	font-size: min(6vw, 2.5rem);
	font-weight: 700;
} 
@media (max-width: 40rem) {
	#page_title h2 {
		text-align: center;
	}
}

#privacy {
	width: 54rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto min(5vw, 2.5rem);
}
#privacy > p {
	font-size: clamp(1rem, 3vw, 1.125rem);
	font-weight: 500;
	line-height: 1.75
}
#privacy > dl {
	margin-top: 2rem;
}
#privacy > dl dt {
	font-weight: 700;
	line-height: 1.5;
	margin: 3rem 0 1rem;
	font-size: clamp(1.125rem, 3vw, 1.25rem);
}
#privacy.aboutus > dl {
	margin-top: -2rem !important;
}
#privacy > dl dt::before {
	content: '━';
	letter-spacing: 0;
	margin-right: 0.5rem;
}
#privacy > dl dd {
	padding-left: 1.75rem;
	line-height: 1.75;
	font-size: clamp(1rem, 3vw, 1.05rem);
}
#privacy > dl dd ol {
	margin: 1.25rem 0;
}
#privacy > dl dd ol li {
	margin: 0.75rem 0 0.75rem 2.25rem;
	line-height: 1.5;
	list-style: decimal outside;
	font-size: clamp(1rem, 3vw, 1.05rem);
}
#privacy.aboutus > dl dt::before {
	content: none;
}
#privacy.aboutus > dl dd {
	padding-left: 0;
}

/*==================== 入会メールフォーム ====================*/
#mailform {
	width: 54rem;
	max-width: calc(100% - 5vw);
	margin: 0 auto;
}
#mailform > p {
	margin-bottom: 1rem; 
	font-size: clamp(0.95rem, 3vw, 1.05rem);
	line-height: 1.75;
}
#mailform > p a:any-link {
	background: #FDB;
	padding: 0 0.25rem;
}
#mailform > p a:hover {
	filter: brightness(110%);
}

#mailform div.table_wrap {
	width: 100%;
	margin: 2rem 0;
}
#mailform div.table_wrap h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	white-space: nowrap;
}
#mailform div.table_wrap h3 small {
	white-space: normal;
	line-height: 1.25;
	margin-left: 0.5rem;
}
#mailform table {
	width: 100%;
	border-collapse: collapse;
	border: solid 2px #CCC;
}
#mailform table th,
#mailform table td {
	padding: 1rem min(2.5vw, 1rem);
	border: solid 2px #CCC;
	font-weight: 500;
	text-align: left;
	font-size: 1.125rem;
}
#mailform table th {
	background: #EEE;
	width: 25%;
}
#mailform table td div + div {
	margin-top: 0.5rem;
}
#mailform table input[type=text],
#mailform table input[type=tel],
#mailform table input[type=email],
#mailform table textarea {
	width: 100%;
	font-size: 1.125rem;
	padding: 0.5rem 0.5rem;
	background: #F3F3F3;
	border: none;
	line-height: 1.5;
	font-family: sans-serif;
}
#mailform table input[type=text]:focus,
#mailform table input[type=tel]:focus,
#mailform table input[type=email]:focus,
#mailform table textarea:focus {
	outline: solid thin #CCC;
}
#mailform table textarea {
	height: 4.5rem;
	display: block;
}
#mailform div#submit_button {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
}
#mailform div#submit_button button,
#mailform div#submit_button a:any-link {
	display: block;
	margin: 0 0.25rem;
	border: solid medium #004EA2;
//	border-radius: 3rem;
	font-size: clamp(1.125rem, 4vw, 1.5rem);
	font-weight: 600;
	padding: 0.667em 1.5em;
	color: white;
	background: #004EA2;
	box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.125);
	transition: .2s;
}
#mailform div#submit_button button {
	padding: 0.75em 2.5em;
}
#mailform div#submit_button button:hover,
#mailform div#submit_button a:hover {
	filter: brightness(125%);
}
#mailform div#submit_button button:active,
#mailform div#submit_button a:active {
	box-shadow: 0rem 0rem 0.5rem rgba(0,0,0,0);
}
#mailform div#submit_button a:nth-of-type(2) {
	font-size: clamp(0.9rem, 3vw, 1rem);
}
@media (max-width: 40rem) {
	#mailform table th,
	#mailform table td {
		display: block;
		border: none;
		width: 100%;
	}
	#mailform table th {
		font-size: 1rem;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	#mailform table td {
		font-size: 1rem;
		border-bottom: solid 2px #CCC;
	}
	#mailform table tr:last-child td {
		border-bottom: none;
	}
}
#mailform table #zip {
	width: 8em;
}
#mailform table #txt1 {
	width: 6em;
	text-align: right;
}
#mailform table #txt2,
#mailform table #txt3 {
	width: 3em;
	text-align: right;
}
#pp_check {
	text-align: center;
	margin-bottom: 1rem;
	line-height: 1.25;
	word-break: keep-all;
	font-size: min(3vw, 1rem);
}
#pp_check input[type=checkbox] {
	margin-right: 0.5rem;
	transform: scale(1.5);
}
/* 不備がない時のメッセージ */
#att {
  padding: 2rem 0 0;
}

#att #allgreen_message {
  display: flex;
  border: solid medium #090;
  padding: 0.5rem;
  background: white;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  width: 100%;
  margin: 0 auto;
}
#att #allgreen_message span {
  margin: 0.5rem;
  color: #090;
  font-size: 1rem;
  display: block;
  line-height: 1.25;
}
#att #allgreen_message strong {
  font-size: 1.125rem;
  line-height: 1.25;
  color: #090;
}
#att #allgreen_message .blink {
  font-size: 2.5rem;
  width: 3.5rem !important;
  height: 3.5rem !important;
  color: white;
  background: #090;
  border-radius: 50%;
  line-height: 1 !important;
  text-align: center;
  padding: 0.5rem 0 0;
  font-family: serif;
  flex-shrink: 0;
  flex-grow: 0;
  animation: rotate-anime 5s linear infinite;
  box-sizing: border-box;
  flex: none;
  letter-spacing: 0;
}
@keyframes rotate-anime {
  0%  { transform: rotateY(0); }
  100%  { transform: rotateY(360deg); }
}
/* 送信完了 */
#kanryo h3 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 1rem 0 3rem;
}
#kanryo p {
	margin: 2rem 0;
	padding: 0 2rem;
	line-height: 2;
}
#kanryo p:last-child {
	margin-top: 4rem;
}


/*==================== お知らせ / 活動報告 ====================*/

/*---------- 個別の記事 ----------*/
#news {
	margin-top: -4rem;
}
#news hgroup {
	background: #F08300;
	height: 15rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#news hgroup h2 {
	color: white;
	padding-left: 15vw;
}
#news hgroup h2::after {
	display: block;
	content: '';
	width: 200rem;
	height: 1px;
	background: white;
	margin: 1.25rem 0;
	position: relative;
	left: calc(-200rem + 16rem);
}
#news hgroup p {
	color: white;
	padding-left: 15vw;
	position: relative;
	top: 0.5rem;
	font-weight: 700;
}
@media (max-width: 40rem) {
	#news hgroup {
		height: 8rem;
		gap: 0.5rem;
		
	}
	#news hgroup h2 {
		font-size: min(6vw, 2.5rem);
		padding: 0.5rem 0 0;
		text-align: center;
	}
	#news hgroup h2::after {
		content: none;
	}
	#news hgroup p {
		padding: 0;
		text-align: center;
	}
}
#news article {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: min(10vw, 5rem) auto;
}

#news article div:first-child {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 1rem;
	align-items: center;
}
#news article div:first-child span#category {
	background: #F08300;
	padding: 0.333em 1.5em;
	color: white;
	border-radius: 1rem;
}
#news article h3 {
	background: #FCDCB7;
	font-size: clamp(1.25rem, 5vw, 1.667rem);
	padding: 1.5rem min(5vw, 2rem);
	font-weight: 700;
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: min(6vw, 3rem);
}
#news article p {
	margin: min(6vw, 3rem) 0;
	line-height: 2;
	font-size: clamp(0.95rem, 3.5vw, 1.125rem);
}

#news article hr {
	visibility: hidden;
	margin: min(6vw, 3rem) 0;
	clear: both;
}
#news div.image_wrap {
	width: 100%;
	min-height: 5rem;
	margin: min(6vw, 3rem) 0;
}
#news iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
#news div.image_wrap {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: min(5vw, 2.5rem);
}
@media (max-width: 45rem) {
	#news div.image_wrap {
		flex-direction: column;
		align-items: center;
	}
}
#news div.image_wrap figure img {
	width: 100%;
	height: auto;
}
#news #pdf a:any-link {
	display: flex;
	align-items: center;
}
#news #pdf a:any-link::before {
	content: '';
	dispaly: block;
	width: 2rem;
	height: 3rem;
	background: url(./news/img/icon_pdf.svg) center center no-repeat;
	background-size: contain;
	margin-right: 0.5rem;
}
#news #move {
	display: flex;
	justify-content: center;
	gap: min(2.5vw, 1rem);
	margin: min(10vw, 5rem) auto min(6vw, 3rem);
	width: 100%;
}

#news #move li:first-child a:any-link,
#news #move li:last-child a:any-link {
	background: #FCDCB7;
	width: 7rem;
	max-width: 20vw;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: min(4vw, 1rem);
}

#news #move li:nth-child(2) a:any-link {
	color: white;
	background: #F08300;
	width: 14rem;
	max-width: 40vw;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: min(3.5vw, 1rem);
}
#news #move li.noway {
	opacity: 0.333;
	pointer-events: none;
}

/*---------- 記事一覧 ----------*/
#news main {
	padding: min(8vw, 4rem) 0;
}
#news main h3 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 3rem;
}
#news main #category_list {
	width: 53rem;
	max-width: calc(100% - 5vw);
	margin: min(8vw, 4rem) auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: min(2.5vw,1rem);
}
#news main #category_list li {
	max-width: 8rem;
	width: 30vw;
	height: 2rem;
	flex: none;
}
#news main #category_list li a:any-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100% ;
	height: 100%;
	border: solid thin #F08300;
	border-radius: 2rem;
}
#news main #category_list li.here a:any-link {
	color: white;
	background: #F08300;
	pointer-events: none;
}

#news main #headline {
	width: 53rem;
	max-width: calc(100% - 5vw);
	margin: 0 auto;
}
#news main #headline li {
	width: 100%;
	border-bottom: solid thin #111;
}
#news main #headline li:first-child {
	border-top: solid thin #111;
}
#news main #headline li a:any-link {
	display: block;
	margin: 1.25rem 0;
	padding: 0.75rem min(2.5vw, 1rem);
	position: relative;
	transition: .2s;
}
#news main #headline li a:hover {
	background: #F6F6F6;
}
#news main #headline li a::after {
	content: '';
	display: block;
	width: 3rem;
	height: 3rem;
	background: url(./images/icon_yajirushi.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 1.5rem);
	right: min(2.5vw, 1rem);
}
#news main #headline li a p {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
#news main #headline li a p span.category {
	background:  #F08300;;
	border-radius: 0.85rem;
	padding: 0.25em 0;
	width: 7rem;
	text-align: center;
	color: white;
}
#news main #headline li a h4 {
	font-size: clamp(1.125rem, 4.5vw, 1.25rem);
	line-height: 1.5;
	padding-right: 5rem;
}
#news main #pager {
	margin: min(10vw, 5rem) 0 -2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
#news main #pager a:any-link {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.333em;
	background: #FCDCB7;
}

#news main #pager a.here {
	color: white;
	background: #F08300;
	pointer-events: none;
}