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

/*-----------------------------------
	
   スマホ版

-----------------------------------*/

/*-----------------------------------
	         フッター
-----------------------------------*/
/* footer基本設定 */
#footer{
	background-color: #222222;
	color: #FFFFFF;
	margin-top: 50px;
	padding: 60px 20px 20px;
}

/* アコーディオン */
.sitemap-label{
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	color: #FFFFFF;
	padding: 15px 0;
	border-bottom: 1px solid #444444;
	position: relative;
	cursor: pointer;
}

.sitemap-label::after{
	content: '+';
	position: absolute;
	right: 10px;
}
.sitemap-label.is-active::after{
	content: '-';
}

.sitemap-list{
	display: none;
	padding: 10px 0 20px 15px;
	list-style: none;
}

.sitemap-list li a{
	color: #CCCCCC;
	text-decoration: none;
	line-height: 2.5;
}

/* メニューシングル */
.single-nav{
	margin: 50px 0;
	color: #CCCCCC;
	text-decoration: none;
	line-height: 2.5;
}

/* 学校名 */
.school-name-footer{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-bottom: 30px;
}
.school-name-footer img{
	width: 50px;
	height: auto;
}
.school-name-footer span{
	margin: 0;
}

/* SNS・コピーライト */
.footer-bottom{
	margin-top: 40px;
	text-align: center;
}

.footer-sns{
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 20px 0;
}

.sns-item{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
}

.footer-sns img{
	max-width: 100%;
	max-height: 80%;
	object-fit: contain;
}

.footer-sns img[alt="Instagram"]{
	max-height: 60%;	
}
.footer-sns img[alt="X"]{
	max-height: 50%;	
}

.copyright{
	position: sticky;
	bottom: 0;
	width: 100%;
	background-size: cover;
	color: #ffffff;
	text-align: center;
	font-size: 1rem;
}

/*-----------------------------------
	
   パソコン版

-----------------------------------*/
@media (min-width: 900px){
	.footer-sitemap{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 40px 60px;
		max-width: 1200px;
		margin: 0 auto 80px;
		padding: 0 5%;
	}
	
	.sitemap-label{
		border: none;
		pointer-events: none;
		font-weight: bold;
		margin-bottom: 20px;
		padding-bottom: 0;
		border-left: 4px solid #CCCCCC;
		padding: 0 10px 0;
	}
	.sitemap-label::after{
		display: none;
	}
	.sitemap-list{
		display: block !important;
		padding-left: 10px;
	}
	
	.sitemap-list li{
		margin-bottom: 12px;
	}
	.sitemap-list li a{
		font-size: 1.2rem;
		display: block;
		padding: 10px;
		transition: color 0.3s;
		border-radius: 4px;
		text-decoration: none;
	}
	.sitemap-list li a:hover{
		color: #DFFF4F;
	}
	
	.single-nav{
		font-size: 1.2rem;
		transition: color 0.3s;
	}
	.single-nav li a:hover{
		color: #DFFF4F;
	}
}

