@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1260px;
	margin: auto;
}
.l_wrap_sm {
	width: 1100px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}
@media screen and (max-width: 1180px) {
	.l_wrap_sm {
		width: 95%;
	}
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	justify-content: space-between;
}
.l_header_right {
	display: flex;
	padding: 20px 20px 0 0;
}
.l_header_right > * {
	width: 200px;
	margin-left: 20px;
}
/*  .l_logo
---------------------------------------------*/
.l_logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: var(--secondary-color);
	font-size: 0;
	line-height: 1;
}
.l_logo img {
	width: min(80%, 90px);
}
@media screen and (max-width: 1280px) {
	.l_logo a {
		width: 100px;
		height: 100px;
	}
}
@media screen and (max-width: 1080px) {
	.l_logo a {
		width: 80px;
		height: 80px;
	}
}
@media screen and (max-width: 640px) {
	.l_logo a {
		width: 60px;
		height: 60px;
	}
	.l_header_right {
		padding: 10px 10px 0 0;
	}
	.l_header_right > * {
		width: 110px;
		margin-left: 10px;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	right: 10px;
	bottom: 10px;
}
.l_pagetop img {
	width: 70px;
}
@media screen and (max-width: 768px) {
	.l_pagetop {
		bottom: 100px;
	}
	.l_pagetop img {
		width: 50px;
	}
}
@media screen and (max-width: 620px) {
	.l_pagetop {
		bottom: 16.5vw;
	}
}
@media screen and (max-width: 460px) {
	.l_pagetop {
		right: 0;
		bottom: 18vw;
	}
	.l_pagetop img {
		width: 40px;
	}
}
/*----------------------------------------------
	.sidebar
---------------------------------------------*/
#sns {
	width: 7rem;
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	transform: translateY(-50%);
}
#sns .snsBtn + .snsBtn {
	margin-top: 10px;
}
#sns .snsBtn {
	border-radius: 10px 0 0 10px;
	margin-inline: auto;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#sns .snsLine {
	background: var(--line-color);
}
#sns .snsInstagram {
	background: #fff;
}
#sns .snsText {
	margin-bottom: 1rem;
}
#sns .snsLogo {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 70%;
}
#sns .snsLogo li {
	width: 100%;
}
@media screen and (max-width: 768px) {
	#sns {
		display: flex;
		justify-content: center;
		top: auto;
		bottom: 0;
		right: 50%;
		left: 50%;
		width: min(60%, 250px);
		transform: translateX(-50%);
	}
	#sns .snsBtn + .snsBtn {
		margin: 0 0 0 10px;
	}
	#sns .snsBtn {
		flex-direction: initial;
		justify-content: center;
		padding: 0.5rem 1rem;
		border-radius: 10px 10px 0 0;
		gap: 7px;
	}
	#sns .snsText {
		margin-bottom: 0;
	}
	#sns .snsLogo {
		flex-direction: initial;
		gap: 22px;
		width: auto;
	}
	#sns .snsLogo img {
		width: 65px;
		height: auto;
	}
}

/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--base-color);
	padding: 50px 0 20px;
	color: var(--hsuh-color);
}
.l_footer a {
	color: var(--hsuh-color);
}
.l_footer a:hover {
	color: var(--rinsho-color);
}
.l_footer_logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.l_footer_logo > * {
	margin: 0 15px;
}
.l_footer_logo img {
	width: min(70%, 316px);
}
.l_footer_campus {
	font-family: var(--font-zen);
	color: var(--hsuh-color);
	font-size: var(--size-60);
	font-weight: 900;
}
.l_footer_btn_grp {
	margin: 20px 0 30px;
}
.l_footer_btn_grp > * {
	width: 200px;
	margin: 0 10px;
}
.l_footer_contact_ttl {
	font-weight: 900;
}
.l_footer_contact_free {
	width: 63px;
	transform: translateY(5px);
}
.l_footer_contact_num {
	font-family: var(--font-zen);
	font-size: var(--size-50);
	font-weight: 900;
}
.l_footer_email {
	font-weight: 900;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	margin-top: 50px;
	font-size: 0.77em;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.l_footer {
		padding: 30px 0 110px;
	}
	.l_footer_logo {
		flex-direction: column;
	}
	/*  .l_copyright
---------------------------------------------*/
	.l_copyright {
		margin-top: 30px;
	}
}
@media screen and (max-width: 640px) {
	.l_footer_btn_grp {
		flex-direction: column;
	}
	.l_footer_btn_grp > *:not(:first-child) {
		margin-top: 10px;
	}
}
@media screen and (max-width: 620px) {
	.l_footer {
		padding-bottom: 16.5vw;
	}
}
@media screen and (max-width: 460px) {
	.l_footer_campus {
		font-size: var(--size-50);
	}
}
@media screen and (max-width: 400px) {
	.l_footer {
		padding-bottom: calc(18vw + 40px);
	}
}
