/* MV */
.mv {
	width: 100vw;
	margin-top: 9.5rem;
	position: relative;
}
.mv__img {
	width: 100%;
	height: calc(100vh - 9rem);
}
.mv__img img {
	width: 100%;
	height: 100%;
	object-position: center, center;
}
.mv h2 {
	color: #fff;
	font-size: 8.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	position: absolute;
	top: 50%;
	left: 15rem;
	transform: translateY(-50%);
}
.mv h2 span {
	color: #fff;
	line-height: 1;
	background: #70d3a9;
	padding: 0 1rem 1rem 2rem;
}
.mv__movie {
	display: block;
	width: 42rem;
	position: absolute;
	bottom: 4rem;
	right: 4rem;
}
.mv__movie__ttl {
	width: 36rem;
	padding: 0.5rem 0 3rem;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.mv__movie__ttl p {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 1;
}
.mv__movie__ttl__item {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mv__movie__ttl__item img {
	width: 100%;
}
.mv__movie__cnt {
	width: 100%;
	margin-top: -4rem;
	position: relative;
	cursor: pointer;
}
.mv__movie__cnt__img {
	width: 100%;
	position: relative;
	z-index: 1;
}
.mv__movie__cnt__img img {
	width: 100%;
	transition: all 0.3s ease;
}
.mv__movie:hover .mv__movie__cnt__img img {
	opacity: 0.7;
	transition: all 0.3s ease;
}
.mv__movie__cnt__img__bg {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mv__movie__cnt__img__bg img {
	width: 100%;
}
.mv__movie__cnt__item {
	width: 15rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.mv__movie__cnt__item img {
	width: 100%;
}
/* modal */
.movie__modal {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}
.movie__modal__iframe {
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	aspect-ratio: 16/9;
}
.movie__modal__iframe iframe {
	width: 100%;
	height: 100%;
}
.movie__modal__close {
	width: 35px;
	height: 35px;
	position: absolute;
	top: -40px;
	right: -40px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.movie__modal__close:hover {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.movie__modal__close span {
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
.movie__modal__close span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.movie__modal__close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 1920px) {
	.mv {
		margin-top: 95px;
	}
	.mv h2 {
		font-size: 82px;
		left: 150px;
	}
	.mv h2 span {
		padding: 0 10px 10px 20px;
	}
	.mv__movie {
		width: 420px;
		bottom: 40px;
		right: 40px;
	}
	.mv__movie__ttl {
		width: 360px;
		padding: 5px 0 30px;
	}
	.mv__movie__ttl p {
		font-size: 16px;
	}
	.mv__movie__cnt {
		margin-top: -40px;
	}
	.mv__movie__cnt__item {
		width: 150px;
	}
}
@media screen and (max-width: 768px) {
	.mv {
		margin-top: 60px;
	}
	.mv__img {
		width: 100%;
		height: calc(100vh - 6rem);
	}
	.mv__movie {
		display: none;
	}
	.mv__movie:hover .mv__movie__cnt__img img {
		transform: scale(1);
	}
	.mv h2 {
		font-size: 3.4rem;
		top: 70%;
		left: 1rem;
	}
	.mv h2 span {
		padding: 0 0 0.5rem 0.5rem;
	}
	/* modal */
	.movie__modal__iframe {
		width: 90%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		aspect-ratio: 16/9;
	}
	.movie__modal__close {
		top: -45px;
		right: 0;
	}
}
@media screen and (max-width: 393px) {
	.mv {
		margin-top: 6rem;
	}
}

.movie-bottom {
	margin-top: 2rem;
}

.movie-bottom a {
	display: block;
	text-align: center;
}

.movie-bottom ul {
	display: flex;
	gap: 16px;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: nowrap;
	margin-top: 24px;
	max-width: 100%;
}

.movie-bottom img {
	width: 100%;
	height: auto;
	max-width: calc(100vw - 20px);
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	.movie-bottom ul {
		flex-wrap: wrap;
	}

	.movie-bottom ul img {
		max-width: calc(100vw - 20px);
	}
}

/* BANNER */
.banner {
	width: 100%;
	margin-top: 10rem;
}
.banner__slider {
	width: 100%;
	padding-bottom: 3rem !important;
}
.banner__img {
	display: block;
	margin: 0 2.5rem;
	transition: all 0.3s ease;
}
.banner__img:hover {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.banner__img img {
	width: 100%;
}
.banner__slider .slick-dots {
	bottom: 0 !important;
}
.banner__slider .slick-dots li {
	width: 0.8rem !important;
	height: 0.8rem !important;
	background: #ecefeb !important;
}
.banner__slider .slick-dots li.slick-active {
	background: #dae0d7 !important;
}
.banner__slider .slick-dots li button {
	width: 100% !important;
	height: 100% !important;
}
.banner__slider .slick-dots li button::before {
	display: none !important;
}
.banner__slider .slick-dotted.slick-slider {
	margin-bottom: 5rem !important;
}
@media screen and (min-width: 1920px) {
	.banner {
		margin-top: 100px;
	}
	.banner__slider {
		padding-bottom: 30px !important;
	}
	.banner__img {
		margin: 0 25px;
	}
	.banner__slider .slick-dots li {
		width: 8px !important;
		height: 8px !important;
	}
	.banner__slider .slick-dotted.slick-slider {
		margin-bottom: 50px !important;
	}
}
@media screen and (max-width: 768px) {
	.banner {
		margin-top: 2rem;
	}
	.banner__slider {
		padding-bottom: 2.5rem !important;
	}
	.banner__img {
		margin: 0 1.5rem;
	}
	.banner__img:hover {
		opacity: 1;
	}
}

/* NEWS */
.news {
	width: 100%;
	background: #fafdfc;
	padding: 7rem 0 10rem;
}
.news__inner {
	width: 90%;
	max-width: 1480px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.news__ttl {
	width: 20%;
}
.news__ttl h2 {
	font-size: 6.6rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.05em;
	padding-left: 6rem;
	position: relative;
}
.news__ttl h2::before {
	content: "";
	width: 75%;
	height: 0.1rem;
	background: #4db957;
	position: absolute;
	bottom: 0;
	right: 0;
}
.news__ttl h2 span {
	display: block;
	width: 13rem;
	position: absolute;
	top: -4rem;
	left: 0;
}
.news__ttl h2 span img {
	width: 100%;
}
.news__ttl__btn {
	display: block;
	width: 7rem;
	height: 7rem;
	border: 1px solid #8cc261;
	border-radius: 100%;
	margin: 3rem auto 0;
	transition: all 0.3s ease;
}
.news__ttl__btn:hover {
	transform: scale(1.1);
	transition: all 0.3s ease;
}
.news__ttl__btn p {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 1.3rem;
}
.news__ttl__btn p span {
	display: block;
	font-size: 3.9rem;
	font-weight: 100;
	font-family: "Noto Sans JP", "hiragino-kaku-gothic-pron", sans-serif;
	text-align: center;
	margin-top: -1.5rem;
}
.news__container {
	width: 74%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}
.news__cnt {
	width: calc((100% - 4rem) / 3);
	display: block;
}

.news__cnt__img {
	width: 100%;
	height: 23rem;
	transition: all 0.3s ease;
}
.news__cnt:hover .news__cnt__img {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.news__cnt__img img {
	width: 100%;
	height: 100%;
}
.news__cnt__txt {
	margin-top: 2.5rem;
}
.news__cnt__txt--date {
	font-size: 2rem;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
}
.news__cnt__txt--category {
	margin-top: 0.5rem;
	display: flex;
}
.news__cnt__txt--category li {
	display: inline-block;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	background: linear-gradient(90deg, #46cb52, #abf77b);
	padding: 0.5rem 1rem;
	margin-right: 1.5rem;
}
.news__cnt__txt--category li:last-child {
	margin-right: 0;
}
.news__cnt__txt p {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	border-bottom: 0.1rem solid #dae0d7;
	padding-bottom: 1rem;
	margin-top: 1.5rem;
}
@media screen and (min-width: 1920px) {
	.news {
		padding: 70px 0 100px;
	}
	.news__ttl h2 {
		font-size: 66px;
		padding-left: 60px;
	}
	.news__ttl h2::before {
		height: 1px;
	}
	.news__ttl h2 span {
		width: 130px;
		top: -40px;
	}
	.news__ttl__btn {
		width: 70px;
		height: 70px;
		margin: 30px auto 0;
	}
	.news__ttl__btn p {
		font-size: 10px;
		margin-top: 13px;
	}
	.news__ttl__btn p span {
		font-size: 39px;
		margin-top: -15px;
	}
	.news__container {
		gap: 0 20px;
	}
	.news__cnt {
		width: calc((100% - 4rem) / 3);
	}
	.news__cnt__img {
		height: 200px;
	}
	.news__cnt__txt {
		margin-top: 25px;
	}
	.news__cnt__txt--date {
		font-size: 20px;
	}
	.news__cnt__txt--category {
		margin-top: 5px;
	}
	.news__cnt__txt--category li {
		font-size: 12px;
		padding: 5px 10px;
		margin-right: 15px;
	}
	.news__cnt__txt p {
		font-size: 16px;
		border-bottom: 1px solid #dae0d7;
		padding-bottom: 10px;
		margin-top: 15px;
	}
}
@media screen and (max-width: 768px) {
	.news {
		padding: 30px 0 50px;
	}
	.news__inner {
		width: 95%;
		margin: 0 0 0 auto;
		flex-wrap: wrap;
	}
	.news__ttl {
		width: 100%;
		display: flex;
		align-items: end;
	}
	.news__ttl h2 {
		font-size: 40px;
		padding-left: 20px;
	}
	.news__ttl h2::before {
		width: 70%;
		right: -2%;
	}
	.news__ttl h2 span {
		width: 60px;
		top: -15px;
		left: -5px;
	}
	.news__ttl__btn {
		width: 50px;
		height: 50px;
		border: 1px solid #8cc261;
		margin: 20px auto 0 20px;
	}
	.news__ttl__btn:hover {
		transform: scale(1);
	}
	.news__ttl__btn p {
		font-size: 7px;
		margin-top: 12px;
	}
	.news__ttl__btn p span {
		font-size: 27px;
		margin-top: -15px;
	}
	.news__container {
		width: 100%;
		margin-top: 25px;
	}
	.news__cnt__img {
		height: auto;
		aspect-ratio: 1.75/1;
	}
	.news__cnt:hover .news__cnt__img {
		opacity: 1;
	}
	.news__container .slick-list {
		padding: 0 25% 0 0 !important;
	}
	.news__container .slick-slide {
		margin-right: 20px;
		height: auto !important;
		-webkit-backface-visibility: hidden;
		-webkit-transform-style: preserve-3d;
	}
	.news__container .slick-dots {
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
	}
	.news__container .slick-dots li {
		display: inline-block;
		width: calc(90vw / 9);
		height: 4px !important;
		background: #f2f2f2 !important;
		margin: 0 !important;
		transition: all 0.3s ease;
	}
	.news__container .slick-dots li.slick-active {
		background: #8cc261 !important;
		transition: all 0.3s ease;
	}
	.news__container .slick-dots li button::before {
		display: none;
	}
	.news__container .slick-dots li button::after {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		display: block;
		width: 0%;
		height: 100%;
	}
	.news__cnt__txt {
		margin-top: 10px;
	}
	.news__cnt__txt--date {
		font-size: 16px;
	}
	.news__cnt__txt--category {
		margin-top: 10px;
		flex-wrap: wrap;
	}
	.news__cnt__txt--category li {
		font-size: 10px;
		margin-right: 10px;
	}
	.news__cnt__txt p {
		font-size: 14px;
		margin-top: 15px;
	}
}
@media screen and (max-width: 393px) {
	.news {
		padding: 3rem 0 5rem;
	}
	.news__ttl h2 {
		font-size: 4rem;
		padding-left: 2rem;
	}
	.news__ttl h2 span {
		width: 6rem;
		top: -1.5rem;
		left: -0.5rem;
	}
	.news__ttl__btn {
		width: 5rem;
		height: 5rem;
		border: 0.1rem solid #8cc261;
		margin: 2rem auto 0 2rem;
	}
	.news__ttl__btn p {
		font-size: 0.7rem;
		margin-top: 1.2rem;
	}
	.news__ttl__btn p span {
		font-size: 2.7rem;
		margin-top: -1.5rem;
	}
	.news__container {
		margin-top: 2.5rem;
	}
	.news__container .slick-slide {
		margin-right: 2rem;
	}
	.news__container .slick-dots li {
		height: 0.4rem !important;
	}
	.news__cnt__txt {
		margin-top: 1rem;
	}
	.news__cnt__txt--date {
		font-size: 1.6rem;
	}
	.news__cnt__txt--category {
		margin-top: 1rem;
	}
	.news__cnt__txt--category li {
		font-size: 1rem;
		margin-right: 1rem;
	}
	.news__cnt__txt p {
		font-size: 1.4rem;
		margin-top: 1.5rem;
	}
}

/* DEPARTMENT */
.department {
	padding: 9rem 0 16rem 0;
	position: relative;
}
.department::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/top/department-bg.png") center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.department__ttl {
	text-align: center;
	position: relative;
	z-index: 1;
}
.department__ttl h2 {
	font-size: 6.6rem;
	font-weight: 600;
	font-style: italic;
	display: inline-block;
	position: relative;
}
.department__ttl h2::before {
	content: "";
	width: 62%;
	height: 0.1rem;
	border-bottom: 0.1rem solid #4db957;
	position: absolute;
	bottom: 0;
	right: -5%;
}
.department__ttl h2 span {
	display: block;
	width: 16rem;
	position: absolute;
	top: -7rem;
	left: -6rem;
}
.department__ttl span img {
	width: 100%;
}
.department__container {
	margin-top: 8rem;
	position: relative;
	z-index: 1;
}
.department__cnt {
	width: 85%;
	display: flex;
	align-items: center;
}
.department__cnt:nth-child(1) {
	margin-right: auto;
}
.department__cnt:nth-child(2) {
	margin: 0 auto 0 10%;
	flex-direction: row-reverse;
	justify-content: center;
}
.department__cnt:nth-child(3) {
	margin-left: auto;
	flex-direction: row-reverse;
}
.department__cnt__img {
	width: 60%;
}
.department__cnt__img img {
	width: 100%;
	vertical-align: middle;
}
.department__cnt__txt {
	display: block;
	margin-left: -8%;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}
.department__cnt:nth-child(2) .department__cnt__txt,
.department__cnt:nth-child(3) .department__cnt__txt {
	margin-right: -2.5%;
}
.department__cnt__txt h3 {
	display: inline-block;
	font-size: 3.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.42;
	background: rgba(255, 255, 255, 0.6);
	padding: 3rem 5rem;
	position: relative;
}
.department__cnt__txt h3 span {
	display: block;
	width: 15rem;
	position: absolute;
	top: -5rem;
	left: -6rem;
}
.department__cnt__txt h3 span img {
	width: 100%;
}
.department__cnt__txt__field {
	border-bottom: 0.1rem solid #70d3a9;
	padding-bottom: 2.5rem;
	margin-top: 2rem;
}
.department__cnt:nth-child(2) .department__cnt__txt__field {
	border-bottom: 0.1rem solid #ffdc65;
}
.department__cnt:nth-child(3) .department__cnt__txt__field {
	border-bottom: 0.1rem solid #f2639c;
}
.department__cnt__txt__field h4 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	position: relative;
}
.department__cnt__txt__field h4::before {
	content: "";
	width: calc(100% - 8rem);
	height: 0.1rem;
	border-bottom: 0.1rem solid #70d3a9;
	position: absolute;
	top: 50%;
	left: 8rem;
	transform: translateY(-50%);
}
.department__cnt:nth-child(2) .department__cnt__txt__field h4::before {
	border-bottom: 0.1rem solid #ffdc65;
}
.department__cnt:nth-child(3) .department__cnt__txt__field h4::before {
	border-bottom: 0.1rem solid #f2639c;
}
.department__cnt__txt__field ul {
	margin-top: 1.5rem;
	display: flex;
	gap: 0 1.5rem;
}
.department__cnt__txt__field ul li {
	font-size: 1.4rem;
	font-weight: 400;
	background: #fff;
	border: 0.1rem solid #4db957;
	border-radius: 4rem;
	padding: 1rem 4.5rem;
}
.department__cnt:nth-child(2) .department__cnt__txt__field ul li {
	border: 0.1rem solid #ffdc65;
}
.department__cnt:nth-child(3) .department__cnt__txt__field ul li {
	border: 0.1rem solid #f2639c;
}
.department__cnt__btn {
	display: block;
	width: 7rem;
	height: 7rem;
	border-radius: 100%;
	border: 0.1rem solid #8cc261;
	background: #fff;
	margin-top: 2rem;
	transition: all 0.3s ease;
}
.department__cnt__txt:hover .department__cnt__btn {
	transform: scale(1.2);
	transition: all 0.3s ease;
}
.department__cnt:nth-child(2) .department__cnt__btn {
	border: 0.1rem solid #ffdc65;
}
.department__cnt:nth-child(3) .department__cnt__btn {
	border: 0.1rem solid #f2639c;
}
.department__cnt__btn p {
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.05em;
	margin-top: 1.3rem;
}
.department__cnt__btn p span {
	display: block;
	font-size: 3.9rem;
	font-weight: 100;
	font-family: "Noto Sans JP", "hiragino-kaku-gothic-pron", sans-serif;
	margin-top: -1.5rem;
}
@media screen and (min-width: 1920px) {
	.department {
		padding: 90px 0 160px 0;
	}
	.department__ttl h2 {
		font-size: 66px;
	}
	.department__ttl h2::before {
		height: 1px;
		border-bottom: 1px solid #4db957;
	}
	.department__ttl h2 span {
		width: 160px;
		top: -70px;
		left: -60px;
	}
	.department__container {
		margin-top: 80px;
	}
	.department__cnt__txt h3 {
		font-size: 35px;
		padding: 30px 50px;
	}
	.department__cnt__txt h3 span {
		width: 150px;
		top: -50px;
		left: -60px;
	}
	.department__cnt__txt__field {
		border-bottom: 1px solid #70d3a9;
		padding-bottom: 25px;
		margin-top: 20px;
	}
	.department__cnt:nth-child(2) .department__cnt__txt__field {
		border-bottom: 1px solid #ffdc65;
	}
	.department__cnt:nth-child(3) .department__cnt__txt__field {
		border-bottom: 1px solid #f2639c;
	}
	.department__cnt__txt__field h4 {
		font-size: 16px;
	}
	.department__cnt__txt__field h4::before {
		width: calc(100% - 80px);
		height: 1px;
		border-bottom: 1px solid #70d3a9;
		left: 80px;
	}
	.department__cnt:nth-child(2) .department__cnt__txt__field h4::before {
		border-bottom: 1px solid #ffdc65;
	}
	.department__cnt:nth-child(3) .department__cnt__txt__field h4::before {
		border-bottom: 1px solid #f2639c;
	}
	.department__cnt__txt__field ul {
		margin-top: 15px;
		gap: 0 15px;
	}
	.department__cnt__txt__field ul li {
		font-size: 14px;
		border: 1px solid #4db957;
		border-radius: 40px;
		padding: 10px 45px;
	}
	.department__cnt:nth-child(2) .department__cnt__txt__field ul li {
		border: 1px solid #ffdc65;
	}
	.department__cnt:nth-child(3) .department__cnt__txt__field ul li {
		border: 1px solid #f2639c;
	}
	.department__cnt__btn {
		width: 70px;
		height: 70px;
		border: 1px solid #8cc261;
		margin-top: 20px;
	}
	.department__cnt:nth-child(2) .department__cnt__btn {
		border: 1px solid #ffdc65;
	}
	.department__cnt:nth-child(3) .department__cnt__btn {
		border: 1px solid #f2639c;
	}
	.department__cnt__btn p {
		font-size: 10px;
		margin-top: 13px;
	}
	.department__cnt__btn p span {
		font-size: 39px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 768px) {
	.department {
		padding: 50px 0 100px 0;
	}
	.department::before {
		width: 100%;
		height: 100%;
		background: url("../images/top/department-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.department__ttl h2 {
		font-size: 40px;
	}
	.department__ttl h2::before {
		width: 60%;
		right: -5%;
	}
	.department__ttl h2 span {
		width: 80px;
		top: -30px;
		left: -40px;
	}
	.department__container {
		margin-top: 50px;
	}
	.department__cnt {
		width: 100%;
		margin-top: 30px;
		flex-wrap: wrap;
	}
	.department__cnt:first-child {
		margin-top: 0;
	}
	.department__cnt:nth-child(1) {
		margin-right: 0;
	}
	.department__cnt:nth-child(2) {
		margin: 30px 0 0 0;
		flex-direction: row;
	}
	.department__cnt:nth-child(3) {
		margin-left: 0;
		flex-direction: row;
	}
	.department__cnt__img {
		width: 100%;
	}
	.department__cnt:nth-child(1) .department__cnt__txt {
		width: 100%;
		margin: -35px 0 0 0;
	}
	.department__cnt:nth-child(2) .department__cnt__txt {
		width: 100%;
		margin: -10px 0 0 0;
	}
	.department__cnt:nth-child(3) .department__cnt__txt {
		width: 100%;
		margin: -10px 0 0 0;
	}
	.department__cnt:nth-child(2) .department__cnt__txt,
	.department__cnt:nth-child(3) .department__cnt__txt {
		margin-right: 0;
	}
	.department__cnt:nth-child(1) .department__cnt__txt h3 {
		font-size: 18px;
		padding: 15px 20px;
		margin-left: 45px;
	}
	.department__cnt:nth-child(2) .department__cnt__txt h3 {
		font-size: 18px;
		padding: 15px 20px;
		margin-left: 55px;
	}
	.department__cnt:nth-child(3) .department__cnt__txt h3 {
		font-size: 18px;
		padding: 15px 20px;
		margin-left: 70px;
	}
	.department__cnt__txt h3 span {
		width: 90px;
		top: -35px;
		left: -45px;
	}
	.department__cnt__txt__field {
		width: 90%;
		padding-bottom: 20px;
		margin: 20px auto 0;
	}
	.department__cnt__txt__field h4 {
		font-size: 14px;
	}
	.department__cnt__txt__field h4::before {
		width: calc(100% - 70px);
		left: 70px;
	}
	.department__cnt__txt__field ul {
		margin-top: 10px;
		gap: 0 10px;
	}
	.department__cnt__txt__field ul li {
		font-size: 12px;
		padding: 5px 15px;
	}
	.department__cnt__btn {
		width: 50px;
		height: 50px;
		margin: 20px 5% 0 auto;
	}
	.department__cnt__btn:hover {
		transform: scale(1);
	}
	.department__cnt__btn p {
		font-size: 7px;
		margin-top: 10px;
	}
	.department__cnt__btn p span {
		font-size: 27px;
		margin-top: -12px;
	}
}
@media screen and (max-width: 393px) {
	.department {
		padding: 5rem 0 10rem 0;
	}
	.department__ttl h2 {
		font-size: 4rem;
	}
	.department__ttl h2 span {
		width: 8rem;
		top: -3rem;
		left: -4rem;
	}
	.department__container {
		margin-top: 5rem;
	}
	.department__cnt {
		margin-top: 3rem;
	}
	.department__cnt:nth-child(2) {
		margin: 3rem 0 0 0;
	}
	.department__cnt:nth-child(1) .department__cnt__txt {
		margin: -3.5rem 0 0 0;
	}
	.department__cnt:nth-child(2) .department__cnt__txt {
		margin: -1rem 0 0 0;
	}
	.department__cnt:nth-child(3) .department__cnt__txt {
		margin: -1rem 0 0 0;
	}
	.department__cnt:nth-child(1) .department__cnt__txt h3 {
		font-size: 1.8rem;
		padding: 1.5rem 2rem;
		margin-left: 4.5rem;
	}
	.department__cnt:nth-child(2) .department__cnt__txt h3 {
		font-size: 1.8rem;
		padding: 1.5rem 2rem;
		margin-left: 5.5rem;
	}
	.department__cnt:nth-child(3) .department__cnt__txt h3 {
		font-size: 1.8rem;
		padding: 1.5rem 2rem;
		margin-left: 7rem;
	}
	.department__cnt__txt h3 span {
		width: 9rem;
		top: -3.5rem;
		left: -4.5rem;
	}
	.department__cnt__txt__field {
		padding-bottom: 2rem;
		margin: 2rem auto 0;
	}
	.department__cnt__txt__field h4 {
		font-size: 1.4rem;
	}
	.department__cnt__txt__field h4::before {
		width: calc(100% - 7rem);
		left: 7rem;
	}
	.department__cnt__txt__field ul {
		margin-top: 1rem;
		gap: 0 1rem;
	}
	.department__cnt__txt__field ul li {
		font-size: 1.2rem;
		padding: 0.5rem 1.5rem;
	}
	.department__cnt__btn {
		width: 5rem;
		height: 5rem;
		margin: 2rem 5% 0 auto;
	}
	.department__cnt__btn p {
		font-size: 0.7rem;
		margin-top: 1rem;
	}
	.department__cnt__btn p span {
		font-size: 2.7rem;
		margin-top: -1.2rem;
	}
}

/* VOICE */
.voice {
	width: 100%;
	background: url("../images/top/voice-bg.jpg") center center no-repeat;
	background-size: cover;
	padding: 9rem 0;
	margin-top: 10rem;
}
.voice__inner {
	display: flex;
}
.voice__ttl {
	width: 20%;
	margin-left: 16.5%;
}
.voice__ttl h2 {
	font-size: 6.6rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.05em;
	padding-left: 6rem;
	position: relative;
}
.voice__ttl h2::before {
	content: "";
	width: 75%;
	height: 0.1rem;
	border-bottom: 0.1rem solid #4db957;
	position: absolute;
	bottom: 0;
	right: -2rem;
}
.voice__ttl h2 span {
	display: block;
	width: 16rem;
	position: absolute;
	top: -5rem;
	left: 0;
}
.voice__ttl h2 span img {
	width: 100%;
}
.voice__ttl__btn {
	display: block;
	width: 7rem;
	height: 7rem;
	background: #fff;
	border: 0.1rem solid #8cc261;
	border-radius: 100%;
	margin: 3rem auto 0;
	transition: all 0.3s ease;
}
.voice__ttl__btn.pc {
	display: block;
}
.voice__ttl__btn.sp {
	display: none;
}
.voice__ttl__btn:hover {
	transform: scale(1.1);
	transition: all 0.3s ease;
}
.voice__ttl__btn p {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align: center;
	margin-top: 1.3rem;
}
.voice__ttl__btn p span {
	display: block;
	font-size: 3.9rem;
	font-weight: 100;
	font-family: "Noto Sans JP", "hiragino-kaku-gothic-pron", sans-serif;
	text-align: center;
	margin-top: -1.5rem;
}
.voice__container {
	width: 63.5%;
	margin-left: 5%;
}
.voice__container .slick-list {
	padding: 0 15% 0 0 !important;
}
.voice__container .slick-slide {
	margin-right: 34rem;
	height: auto !important;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}
.voice__cnt {
	display: block;
	position: relative;
	cursor: pointer;
}
.voice__cnt__img {
	width: 100%;
	background: #fff;
}
.voice__cnt__img img {
	width: 100%;
	transition: all 0.3s ease;
}
.voice__cnt:hover .voice__cnt__img img {
	opacity: 0.7;
	transition: all 0.3s ease;
}
.voice__cnt__txt {
	background: rgba(255, 255, 255, 0.7);
	padding: 3rem 4rem;
	position: absolute;
	right: -19rem;
	bottom: 5rem;
}
.voice__cnt__txt__person--course {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}
.voice__cnt__txt__person--name {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}
.voice__cnt__txt__person--name span {
	font-size: 1.6rem;
}
.voice__cnt__txt__message {
	font-size: 3.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.36;
	margin-top: 0.5rem;
}
.voice__container .slick-next {
	width: 7.5rem !important;
	height: 20rem !important;
	position: absolute;
	right: 20% !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
}
.voice__container .slick-next::before {
	display: none !important;
}
.voice__container .slick-next::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/top/voice-cnt-next.png") center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.voice__container .slick-next:hover::after {
	left: 1rem;
	transition: all 0.3s ease;
}
@media screen and (min-width: 1920px) {
	.voice {
		padding: 90px 0;
		margin-top: 100px;
	}
	.voice__ttl h2 {
		font-size: 66px;
		padding-left: 60px;
	}
	.voice__ttl h2::before {
		height: 1px;
		border-bottom: 1px solid #4db957;
		right: -20px;
	}
	.voice__ttl h2 span {
		width: 160px;
		top: -50px;
	}
	.voice__ttl__btn {
		width: 70px;
		height: 70px;
		border: 1px solid #8cc261;
		margin: 30px auto 0;
	}
	.voice__ttl__btn p {
		font-size: 10px;
		margin-top: 13px;
	}
	.voice__ttl__btn p span {
		font-size: 39px;
		margin-top: -15px;
	}
	.voice__container .slick-slide {
		margin-right: 340px;
	}
	.voice__cnt__txt {
		padding: 30px 40px;
		right: -190px;
		bottom: 50px;
	}
	.voice__cnt__txt__person--course {
		font-size: 16px;
	}
	.voice__cnt__txt__person--name {
		font-size: 18px;
	}
	.voice__cnt__txt__person--name span {
		font-size: 16px;
	}
	.voice__cnt__txt__message {
		font-size: 38px;
		margin-top: 5px;
	}
	.voice__container .slick-next {
		width: 75px !important;
		height: 200px !important;
	}
	.voice__container .slick-next:hover::after {
		left: 10px;
	}
}
@media screen and (max-width: 768px) {
	.voice {
		background: url("../images/top/voice-bg-sp.jpg") center center no-repeat;
		background-size: cover;
		padding: 100px 0;
		margin-top: 0;
	}
	.voice__inner {
		flex-wrap: wrap;
	}
	.voice__ttl {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	.voice__ttl h2 {
		display: inline-block;
		font-size: 4rem;
		padding-left: 0;
	}
	.voice__ttl h2::before {
		width: 80%;
		right: -1rem;
	}
	.voice__ttl h2 span {
		width: 7rem;
		top: -2rem;
		left: -3rem;
	}
	.voice__ttl__btn {
		width: 5rem;
		height: 5rem;
		margin: 5rem 5% 0 auto;
	}
	.voice__ttl__btn.pc {
		display: none;
	}
	.voice__ttl__btn.sp {
		display: block;
	}
	.voice__ttl__btn:hover {
		transform: scale(1);
	}
	.voice__ttl__btn p {
		font-size: 0.7rem;
		margin-top: 1rem;
	}
	.voice__ttl__btn p span {
		font-size: 2.7rem;
		margin-top: -1.1rem;
	}
	.voice__container {
		width: 95%;
		margin-left: auto;
		margin-top: 5rem;
	}
	.voice__container .slick-list {
		padding: 0 5% 0 0 !important;
		overflow: visible !important;
	}
	.voice__container .slick-track {
		overflow: visible !important;
	}
	.voice__container .slick-slide {
		margin-right: 7.4rem;
		height: auto !important;
	}
	.voice__cnt {
		overflow: visible !important;
	}
	.voice__cnt:hover .voice__cnt__img img {
		opacity: 1;
	}
	.voice__cnt__txt {
		padding: 1.2rem 1.5rem;
		right: -3rem;
		bottom: -4rem;
	}
	.voice__cnt__txt__person--course {
		font-size: 1rem;
	}
	.voice__cnt__txt__person--name {
		font-size: 1.2rem;
	}
	.voice__cnt__txt__person--name span {
		font-size: 1rem;
	}
	.voice__cnt__txt__message {
		font-size: 1.4rem;
	}
	.voice__container .slick-next {
		width: 2rem !important;
		height: 6.5rem !important;
		right: 12% !important;
	}
	.voice__container .slick-next:hover::after {
		left: 0;
	}
}
@media screen and (max-width: 393px) {
	.voice {
		padding: 10rem 0;
	}
}

/* CAMPUSLIFE */
.campusLife {
	width: 100%;
	padding-top: 20rem;
}
.campusLife__ttl {
	text-align: center;
	position: relative;
	z-index: 1;
}
.campusLife__ttl h2 {
	font-size: 6.6rem;
	font-weight: 600;
	font-style: italic;
	display: inline-block;
	position: relative;
}
.campusLife__ttl h2::before {
	content: "";
	width: 69%;
	height: 0.1rem;
	border-bottom: 0.1rem solid #4db957;
	position: absolute;
	bottom: 0;
	right: -3rem;
}
.campusLife__ttl h2 span {
	display: block;
	width: 16rem;
	position: absolute;
	top: -7rem;
	left: -11rem;
}
.campusLife__ttl span img {
	width: 100%;
}
.campusLife__top {
	display: flex;
	margin-top: 9rem;
}
.campusLife__top__cnt {
	display: block;
	width: calc(100% / 3);
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.campusLife__top__cnt::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.campusLife__top__cnt:nth-child(1)::before {
	background: url("../images/top/campus-cnt-bg01.jpg") center center no-repeat;
	background-size: cover;
	transition: all 0.3s ease;
}
.campusLife__top__cnt:nth-child(1):hover::before {
	width: 105%;
	height: 105%;
	transition: all 0.5s ease;
}
.campusLife__top__cnt:nth-child(2)::before {
	background: url("../images/top/campus-cnt-bg02.jpg") center center no-repeat;
	background-size: cover;
	transition: all 0.3s ease;
}
.campusLife__top__cnt:nth-child(2):hover::before {
	width: 105%;
	height: 105%;
	transition: all 0.5s ease;
}
.campusLife__top__cnt:nth-child(3)::before {
	background: url("../images/top/campus-cnt-bg03.jpg") center center no-repeat;
	background-size: cover;
	transition: all 0.3s ease;
}
.campusLife__top__cnt:nth-child(3):hover::before {
	width: 105%;
	height: 105%;
	transition: all 0.5s ease;
}
.campusLife__top__cnt h3 {
	display: inline-block;
	font-size: 5.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	background: rgba(255, 255, 255, 0.8);
	padding: 1.5rem 6rem 1rem 2rem;
	margin: 20.5rem auto 20.5rem 0;
	position: relative;
	z-index: 1;
}
.campusLife__top__cnt h3 span {
	display: block;
	font-size: 2.3rem;
	font-weight: 600;
	font-style: italic;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-bottom: -0.5rem;
}
.campusLife__under {
	display: block;
	width: 100%;
	padding: 10rem 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.campusLife__under::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/top/campus-cnt-bg04.jpg") center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
}
.campusLife__under:hover::before {
	width: 105%;
	height: 105%;
	transition: all 0.5s ease;
}
.campusLife__under__cnt {
	width: 52%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.campusLife__under__cnt h3 {
	color: #fff;
	font-size: 4.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-top: 4rem;
}
.campusLife__under__cnt h3 span {
	display: block;
	color: #fff;
	font-size: 2.1rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}
.campusLife__under__cnt__img {
	width: 26.5rem;
}
.campusLife__under__cnt__img img {
	width: 100%;
}
@media screen and (min-width: 1920px) {
	.campusLife {
		padding-top: 200px;
	}
	.campusLife__ttl h2 {
		font-size: 66px;
	}
	.campusLife__ttl h2::before {
		height: 1px;
		border-bottom: 1px solid #4db957;
		right: -30px;
	}
	.campusLife__ttl h2 span {
		width: 160px;
		top: -70px;
		left: -110px;
	}
	.campusLife__top {
		margin-top: 90px;
	}
	.campusLife__top__cnt h3 {
		font-size: 54px;
		padding: 15px 60px 10px 20px;
		margin: 205px auto 205px 0;
	}
	.campusLife__top__cnt h3 span {
		font-size: 23px;
		margin-bottom: -5px;
	}
	.campusLife__under {
		padding: 100px 0;
	}
	.campusLife__under__cnt h3 {
		font-size: 41px;
		margin-top: 40px;
	}
	.campusLife__under__cnt h3 span {
		font-size: 21px;
		margin-bottom: 5px;
	}
	.campusLife__under__cnt__img {
		width: 265px;
	}
}
@media screen and (max-width: 768px) {
	.campusLife {
		padding-top: 50px;
	}
	.campusLife__ttl h2 {
		font-size: 40px;
	}
	.campusLife__ttl h2::before {
		width: 69%;
		right: -15px;
	}
	.campusLife__ttl h2 span {
		width: 55px;
		top: -15px;
		left: -25px;
	}
	.campusLife__top {
		flex-wrap: wrap;
		margin-top: 70px;
	}
	.campusLife__top__cnt {
		width: 100%;
	}
	.campusLife__top__cnt:nth-child(1):hover::before {
		width: 100%;
		height: 100%;
	}
	.campusLife__top__cnt:nth-child(2):hover::before {
		width: 100%;
		height: 100%;
	}
	.campusLife__top__cnt:nth-child(3):hover::before {
		width: 100%;
		height: 100%;
	}
	.campusLife__top__cnt h3 {
		font-size: 35px;
		padding: 20px 60px 20px 20px;
		margin: 100px auto 100px 0;
	}
	.campusLife__top__cnt h3 span {
		font-size: 10px;
		margin-bottom: -5px;
	}
	.campusLife__under {
		padding: 50px 0;
	}
	.campusLife__under:hover::before {
		width: 100%;
		height: 100%;
	}
	.campusLife__under__cnt {
		width: 84%;
		margin: 0 auto;
		flex-wrap: wrap;
	}
	.campusLife__under__cnt h3 {
		width: 100%;
		font-size: 23px;
		margin-top: 0;
	}
	.campusLife__under__cnt h3 span {
		font-size: 10px;
		margin-bottom: 0;
	}
	.campusLife__under__cnt__img {
		width: 130px;
		margin: 25px auto 0;
	}
}
@media screen and (max-width: 393px) {
	.campusLife {
		padding-top: 5rem;
	}
	.campusLife__ttl h2 {
		font-size: 4rem;
	}
	.campusLife__ttl h2::before {
		right: -1.5rem;
	}
	.campusLife__ttl h2 span {
		width: 5.5rem;
		top: -1.5rem;
		left: -2.5rem;
	}
	.campusLife__top {
		margin-top: 7rem;
	}
	.campusLife__top__cnt h3 {
		font-size: 3.5rem;
		padding: 2rem 6rem 2rem 2rem;
		margin: 10rem auto 10rem 0;
	}
	.campusLife__top__cnt h3 span {
		font-size: 1rem;
		margin-bottom: -0.5rem;
	}
	.campusLife__under {
		padding: 5rem 0;
	}
	.campusLife__under__cnt h3 {
		font-size: 2.3rem;
	}
	.campusLife__under__cnt h3 span {
		font-size: 1rem;
	}
	.campusLife__under__cnt__img {
		width: 13rem;
		margin: 2.5rem auto 0;
	}
}

/* LINK */
.link {
	width: 100%;
	background: linear-gradient(90deg, #f7f8f7, #edfcec);
	padding: 7rem 0;
}
.link__container {
	width: 96%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 0 2rem;
}
.link__cnt {
	width: calc((100% / 3) - 2rem);
	display: block;
	transition: all 0.3s ease;
}
.link__cnt:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.link__cnt:nth-child(1) {
	background: url("../images/top/link-cnt-bg01.jpg") center center no-repeat;
	background-size: cover;
}
.link__cnt:nth-child(2) {
	background: url("../images/top/link-cnt-bg02.jpg") center center no-repeat;
	background-size: cover;
}
.link__cnt:nth-child(3) {
	background: url("../images/top/link-cnt-bg03.jpg") center center no-repeat;
	background-size: cover;
}
.link__cnt h3 {
	color: #fff;
	font-size: 3.5rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	text-align: center;
	padding: 7rem 0;
}
@media screen and (min-width: 1920px) {
	.link {
		padding: 70px 0;
	}
	.link__container {
		gap: 0 20px;
	}
	.link__cnt {
		width: calc((100% / 3) - 20px);
	}
	.link__cnt h3 {
		font-size: 35px;
		padding: 70px 0;
	}
}
@media screen and (max-width: 768px) {
	.link {
		padding: 50px 0;
	}
	.link__container {
		width: 90%;
		flex-wrap: wrap;
	}
	.link__cnt {
		width: 100%;
		margin-top: 20px;
	}
	.link__cnt:first-child {
		margin-top: 0;
	}
	.link__cnt:hover {
		opacity: 1;
	}
	.link__cnt h3 {
		font-size: 21px;
		padding: 40px 0;
	}
}
@media screen and (max-width: 393px) {
	.link {
		padding: 5rem 0;
	}
	.link__cnt {
		margin-top: 2rem;
	}
	.link__cnt h3 {
		font-size: 2.1rem;
		padding: 4rem 0;
	}
}
