@charset "UTF-8";


.c-heading.c-heading--primary {
	display: none;
}
.c-freeTextGroup {
	margin: 0;
}

.mainvisual {
	position: relative;
	margin: 220px 0 50px;
	aspect-ratio: 1540 / 709;
	text-align: center;
}
.mainvisual > li {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.mainvisual > li:first-child {
	z-index: 20;
	opacity: 1;
}
.mainvisual > li.show {
	z-index: 30;
	opacity: 1;
	animation: mainvisualShow 1s;
}
@keyframes mainvisualShow {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.mainvisual > li img {
	width: 100%;
}
@media only screen and (max-width: 1400px) {
	.mainvisual {
		margin: calc(7.17vw + 120px) 0 50px;
	}
}
@media only screen and (max-width: 767px) {
	.mainvisual {
		margin: 140px 0 30px;
		aspect-ratio: 780 / 800;
	}
}

.fixBtn {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 100;
	transform: translateY(-50%);
	background-color: #fff;
}
@media only screen and (min-width: 768px) {
	.fixBtn li {
		max-width: calc(10.6vh - 20px);
	}
}
@media only screen and (max-width: 767px) {
	.fixBtn {
		top: auto;
		left: 0;
		bottom: 0;
		display: flex;
		transform: translateY(0);
	}
	.c-pagetop {
		bottom: 13vw;
	}
}

.pageInner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}
@media only screen and (max-width: 767px) {
	.pageInner {
		padding: 0 2.6vw;
	}
}

@media only screen and (max-width: 767px) {
	.spSlider {
		position: relative;
		max-width: calc(423px + 18vw);
		margin: 0 auto;
		padding: 0 9vw 9vw;
		overflow: hidden;
	}
	.spSlider::before {
		content: '';
		position: absolute;
		top: 0;
		left: -1px;
		bottom: 9vw;
		z-index: 1;
		width: 9vw;
		background-color: #fafafa;
	}
	.spSlider::after {
		content: '';
		position: absolute;
		top: 0;
		right: -1px;
		bottom: 9vw;
		z-index: 1;
		width: 9vw;
		background-color: #fafafa;
	}
	.spSlider > ul {
		position: relative;
		flex-wrap: nowrap !important;
		gap: 0 5% !important;
	}
	.spSlider > ul > li {
		width: 100% !important;
		flex-shrink: 0;
	}
	.spSlider .leftBtn,
	.spSlider .rightBtn {
		position: absolute;
		top: 0;
		bottom: 9vw;
		z-index: 10;
		width: 7.7vw;
		height: 7.7vw;
		margin: auto 0;
		border-radius: 50%;
		background-color: #20ace7;
	}
	.spSlider .leftBtn {
		left: 0;
	}
	.spSlider .rightBtn {
		right: 0;
	}
	.spSlider .leftBtn::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 33%;
		width: 35%;
		height: 35%;
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
		transform-origin: left top;
		transform: rotate(-45deg);
	}
	.spSlider .rightBtn::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 33%;
		width: 35%;
		height: 35%;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform-origin: right top;
		transform: rotate(45deg);
	}
	.spSlider .control {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}
	.spSlider .control ul {
		display: flex;
		gap: 2.6vw;
	}
	.spSlider .control li {
		width: 3.1vw;
		height: 3.1vw;
		border-radius: 50%;
		background-color: #bebebe;
	}
	.spSlider .control li.current {
		background-color: #002991;
	}
	.spSlider .control .stopBtn {
		width: 7.7vw;
		height: 7.7vw;
		background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_stop.svg) no-repeat 50% 50%;
		background-size: 50% auto;
	}
	.spSlider .control .playBtn {
		width: 7.7vw;
		height: 7.7vw;
		background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_play.svg) no-repeat 50% 50%;
		background-size: 50% auto;
		display: none;
	}
}

.openCampus {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
}
.openCampus li {
	width: 423px;
	border: 2px solid #000;
	border-radius: 20px;
	position: relative;
	background-color: #fff;
	padding: 90px 30px 30px;
	text-align: center;
}
.openCampus li.s_finish {
	position: relative;
	overflow: hidden;
}
.openCampus li.s_finish::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/schedule_finish.png) no-repeat 50% 87% rgb(34,34,34,0.5);
	background-size: 91.64%;
}
.openCampus .season {
	position: absolute;
	top: 25px;
	left: 0;
	padding: 0 10px;
	line-height: 50px;
	font-family: Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 24px;
}
.openCampus .season.s_summer {
	background-color: #90d6f3;
}
.openCampus .season.s_autumn {
	background-color: #faddac;
}
.openCampus .season::after {
	content: '';
	position: absolute;
	top: 0;
	right: -24px;
	border-left: 24px solid;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
}
.openCampus .season.s_summer::after {
	border-left-color: #90d6f3;
}
.openCampus .season.s_autumn::after {
	border-left-color: #faddac;
}
.openCampus .reservation {
	position: absolute;
	top: 30px;
	right: 20px;
	border: 2px solid #c9242b;
	padding: 3px 6px 3px 10px;
	color: #c9242b;
	font-size: 18px;
	font-weight: bold;
}
.openCampus .btn {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #1a438a;
	border-radius: 21px;
	height: 42px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.openCampus div.btn {
	background-color: #959595;
}
.openCampus a.btn:hover {
	color: #fff;
	opacity: 0.8;
}
.openCampus div.btn::before {
	content: 'Coming Soon';
	margin-right: 10px;
	border: 1px solid #E85D75;
	background-color: #fff;
	border-radius: 12px;
	padding: 2px 5px 3px;
	color: #E85D75;
	line-height: 1.2;
}
.openCampus .btn > span {
	position: relative;
	display: inline-block;
	padding: 0 16px 0 22px;
	background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_pdf.svg) no-repeat 0 50%;
}
.openCampus .btn > span::after {
	content: '';
	position: absolute;
	top: 8px;
	right: 2px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
@media only screen and (max-width: 1000px) {
	.openCampus {
		gap: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.openCampus {
		justify-content: flex-start;
	}
}
@media only screen and (max-width: 600px) {
	.openCampus {
		justify-content: flex-start;
	}
	.openCampus li {
		padding: 17vw 4vw 4vw;
	}
	.openCampus li.s_finish::after {
		background-position: 50% 90%;
		background-size: 94%;
	}
	.openCampus .season {
		top: 4vw;
		padding: 0 2vw;
		line-height: 10vw;
		font-size: 4vw;
	}
	.openCampus .season::after {
		right: -3.9vw;
		border-left: 4vw solid;
		border-top: 5vw solid transparent;
		border-bottom: 5vw solid transparent;
	}
	.openCampus .reservation {
		top: 4.5vw;
		right: 3vw;
		font-size: 3.2vw;
	}
	.openCampus .schedule {
		margin: 0 auto;
		width: 90%;
	}
	.openCampus .btn {
		margin-top: 3vw;
		height: 9vw;
	}
	.openCampus div.btn::before {
		margin-right: 2vw;
		border-radius: 12px;
		width: 14vw;
		padding: 0 1.5vw;
		font-size: 2.6vw;
		line-height: 1.1;
	}
	.openCampus .btn > span {
		padding: 0 3vw 0 5vw;
		font-size: 3.2vw;
	}
	.openCampus .btn > span::after {
		top: 2vw;
		right: 0;
		width: 2vw;
		height: 2vw;
	}
}

.event {
	margin: 140px 0;
}
.event h2 {
	text-align: center;
}
.event .flag {
	max-width: 55%;
}
.event .subTitle {
	position: relative;
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px 70px 2px 30px;
	cursor: pointer;
}
.event .subTitle::after {
	content: '＋';
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	color: #666;
	font-size: 22px;
	line-height: 27px;
}
.event .subTitle.open::after {
	content: 'ー';
}
.event img + .subTitle {
	margin-top: 0;
}
.event .subTitle.color01 {
	background-color: #6cb899;
}
.event .subTitle.color02 {
	background-color: #e58c96;
}
.event .subTitle.color03 {
	background-color: #6a96c2;
}
.event .subTitle.color04 {
	background-color: #8593d1;
}
.event .subTitle.color05 {
	background-color: #d2bf85;
}
.event .subTitle h3 {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}
.event .subTitle .subText {
	position: relative;
	background-color: rgba(255,255,255,0.75);
	width: 372px;
	border-radius: 15px;
	text-align: center;
	font-size: 20px;
	line-height: 1.5;
}
.event .subTitle .subText::before {
	content: '';
	position: absolute;
	top: 0;
	left: -15px;
	bottom: 0;
	width: 10px;
	height: 10px;
	margin: auto 0;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.75);
	box-shadow: -15px 0 rgba(255,255,255,0.75), -30px 0 rgba(255,255,255,0.75);
}
@media only screen and (max-width: 1100px) {
	.event h2 {
		margin-bottom: 20px;
	}
	.event h2 img {
		max-width: 55%;
	}
	.event .subTitle {
		margin-top: 40px;
	}
	.event .subTitle .subText {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.event {
		margin: 30px 0 100px;
	}
	.event h2 img {
		width: 400px;
		max-width: 85%;
	}
	.event .subTitle {
		margin: 40px -2.6vw 0;
		padding: 3px 55px 5px 12px;
	}
	.event .subTitle::after {
		right: 14px;
	}
	.event .subTitle h3 {
		font-size: min(22px, 6vw);
		font-feature-settings: "palt";
	}
}

.eventList {
	display: none;
	padding-bottom: 40px;
}
.eventList .list {
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3.35%;
}
.eventList .list > li {
	width: 31.1%;
	border: 2px solid #000;
	border-radius: 20px;
	padding: 22px 23px 25px;
}
.eventList .list > li:has(a) {
	padding: 0;
}
.eventList a {
	display: block;
	padding: 22px 23px 25px;
	color: inherit !important;
	border: none !important;
}
.eventList a:hover {
	opacity: 0.8;
}
.eventList a:hover img {
	opacity: 1;
}
.eventList h4 {
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 2.4em;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.2;
}
.eventList p {
	margin-top: 15px;
	display: flex;
	min-height: 3.2em;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.6;
}
.eventList a p {
	position: relative;
	padding-right: 35px;
}
.eventList a p::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #2e6da4;
}
.eventList a p::after {
	content: '';
	position: absolute;
	top: 0;
	right: 12px;
	bottom: 1px;
	width: 9px;
	height: 9px;
	margin: auto 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
@media only screen and (max-width: 1000px) {
	.eventList .list {
		gap: 40px 6%;
	}
	.eventList .list > li {
		width: 47%;
	}
}
@media only screen and (max-width: 767px) {
	.eventList .list {
		padding-top: 30px;
	}
	.eventList .list > li {
		padding: 15px 23px;
	}
	.eventList a {
		padding: 15px 23px;
	}
	.eventList h4 {
		margin-bottom: 10px;
		font-size: 18px;
	}
	.eventList p {
		margin-top: 10px;
		min-height: 2.8em;
		font-size: 14px;
		line-height: 1.4;
	}
	.eventList a p {
		justify-content: flex-start;
		text-align: left;
	}
}

.preparation {
	margin-bottom: 140px;
}
.preparation h3 {
	background-color: #6a96c2;
	padding: 2px 30px 0;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}
.preparation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 3.8%;
	border: 3px solid #6a96c2;
	background-color: #fffaef;
	padding: 50px 27px 77px;
}
.preparation li {
	width: 30.8%;
}
.preparation a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	border: 2px solid #222 !important;
	border-radius: 20px;
	background-color: #fafafa;
	padding: 15px 55px 15px 17px;
	color: inherit !important;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.3;
}
.preparation a:hover {
	opacity: 0.7;
}
.preparation a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #6a96c2;
}
.preparation a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 32px;
	bottom: 1px;
	width: 9px;
	height: 9px;
	margin: auto 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
@media only screen and (max-width: 1000px) {
	.preparation ul {
		gap: 30px 4%;
		padding: 40px 20px 50px;
	}
	.preparation li {
		width: 48%;
	}
	.preparation a {
		font-size: 20px;
	}
	.preparation a img {
		width: 40px;
	}
}
@media only screen and (max-width: 767px) {
	.preparation {
		margin-bottom: 100px;
	}
	.preparation h3 {
		padding: 13px 15px 10px;
		font-size: 22px;
		line-height: 1.3;
	}
	.preparation ul {
		gap: 20px;
		padding: 20px 20px 30px;
	}
	.preparation li {
		width: 100%;
	}
	.preparation a {
		border-radius: 10px;
		padding: 12px 45px 12px 10px;
		font-size: 20px;
	}
	.preparation a::before {
		right: 12px;
	}
	.preparation a::after {
		right: 24px;
	}
	.preparation a img {
		width: 40px;
	}
}

.individual {
	margin-bottom: 140px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 40px;
	border: 3px solid #2e6da4;
	border-radius: 20px;
	padding: 40px;
	text-align: center;
}
.individual h3 {
	margin-bottom: 40px;
	color: #2E6DA4;
	font-size: 32px;
	font-weight: bold;
	line-height: 1.3;
}
.individual a {
	display: inline-block;
	width: 100%;
	max-width: 423px;
	background-color: #2e6da4;
	border-radius: 34px;
	padding: 9px 0;
	color: #fff !important;
	font-size: 28px;
	font-weight: bold;
	box-shadow: 0 5px 5px rgb(33,33,33,0.3);
}
.individual a:hover {
	opacity: 0.7;
}
.individual a > span {
	position: relative;
	display: inline-block;
	padding-right: 36px;
}
.individual a > span::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 5px;
	width: 18px;
	height: 18px;
	margin: auto 0;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}
@media only screen and (max-width: 1000px) {
	.individual {
		display: block;
	}
	.individual h3 {
		margin-bottom: 20px;
		font-size: 24px;
	}
	.individual .img {
		max-width: 85%;
		margin: 30px auto 0;
	}
}
@media only screen and (max-width: 767px) {
	.individual {
		margin-bottom: 100px;
		gap: 30px;
		padding: 30px 17px;
	}
	.individual h3 {
	}
	.individual a {
		max-width: 300px;
		padding: 7px 0;
		font-size: 20px;
	}
	.individual a > span {
		padding-right: 30px;
	}
	.individual a > span::after {
		top: 13px;
		width: 11px;
		height: 11px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}

.qa {
	margin-bottom: 140px;
}
.qa h2 {
	margin-bottom: 40px;
	text-align: center;
}
.qa h3 {
	position: relative;
	margin-bottom: 40px;
	background-color: #8593d1;
	padding: 2px 30px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}
.qa h3::after {
	content: '＋';
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	color: #666;
	font-size: 22px;
	line-height: 27px;
}
.qa h3.open::after {
	content: 'ー';
}
.qa > ul {
	display: none;
}
.qa li + li {
	margin-top: 30px;
}
.qa .question {
	position: relative;
	border: 1px solid #222;
	border-radius: 10px 10px 0 0;
	background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_q.svg) no-repeat 27px 50% #bfc6e5;
	padding: 10px 60px 10px 90px;
	min-height: 66px;
	display: flex;
	align-items: center;
	color: #222;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	cursor: pointer;
}
.qa .question::after {
	content: '＋';
	position: absolute;
	top: 0;
	right: 24px;
	bottom: 0;
	width: 30px;
	height: 30px;
	margin: auto 0;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	color: #666;
	font-size: 22px;
	line-height: 27px;
}
.qa .question.open::after {
	content: 'ー';
}
.qa .answer {
	border: 1px solid #222;
	border-top: none;
	border-radius: 0 0 10px 10px;
	display: none;
}
.qa .answer > div {
	background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_a.svg) no-repeat 27px 28px;
	padding: 30px 20px 30px 90px;
	min-height: 106px;
}
.qa h5 {
	margin-top: 30px;
	font-size: 16px;
	font-weight: bold;
}
.qa h5:first-child {
	margin-top: 0;
}
.qa .hash {
	color: #8593D1;
	font-weight: bold;
}
@media only screen and (max-width: 767px) {
	.qa {
		margin-bottom: 100px;
	}
	.qa h2 {
		margin-bottom: 20px;
	}
	.qa h2 img {
		width: 240px;
	}
	.qa h3 {
		margin: 0 -2.6vw 20px;
		padding: 5px 12px;
		font-size: 23px;
	}
	.qa h3::after {
		right: 14px;
	}
	.qa li + li {
		margin-top: 15px;
	}
	.qa .question {
		background-size: 40px auto;
		background-position: 8px 50%;
		padding: 12px 45px 12px 56px;
		min-height: 60px;
		font-size: 14px;
	}
	.qa .question::after {
		right: 13px;
		width: 25px;
		height: 25px;
		font-size: 19px;
		line-height: 24px;
	}
	.qa .answer > div {
		background-size: 40px auto;
		background-position: 8px 11px;
		padding: 10px 10px 10px 60px;
		min-height: 63px;
		font-size: 14px;
	}
	.qa h5 {
		margin-top: 20px;
		font-size: 14px;
	}
}

.access .main {
	margin-bottom: 50px;
	background: url(/wp-content/themes/sshd/static/admission/open-campus/img/access_bg.png) no-repeat 50% 50%;
	background-size: cover;
	padding: 84px 20px 70px;
}
.access h2 {
	margin-bottom: 30px;
	text-align: center;
}
.access h2 img {
	max-width: 60%;
}
.access .box {
	max-width: 1360px;
	margin: 0 auto;
}
.access .box h3 {
	background-color: #2e6da4;
	padding: 2px 30px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
}
.access .box .body {
	background-color: rgba(255,255,255,0.7);
	padding: 30px;
}
.access .box .img {
	margin-top: 30px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 17px;
}
.access .subArea {
	margin: 0 auto;
	max-width: 1360px;
	padding: 0 30px;
}
.access .hasBtn {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 30px;
}
.access .hasBtn a {
	position: relative;
	display: inline-block;
	border: none !important;
	background: url(/wp-content/themes/sshd/static/admission/open-campus/img/icon_map.svg) no-repeat 16px 50% #666;
	border-radius: 19px;
	padding: 6px 33px 6px 40px;
	color: #fff;
	font-size: 14px;
}
.access .hasBtn a:hover {
	opacity: 0.7;
}
.access .hasBtn a::after {
	content: '';
	position: absolute;
	top: 13px;
	right: 17px;
	width: 9px;
	height: 9px;
	margin: auto 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
	.access .main {
		margin-bottom: 30px;
		background-position: 50% 0;
		background-size: 100% auto;
		padding: 125px 0 0;
	}
	.access h2 {
		margin-bottom: 15px;
	}
	.access h2 img {
		width: 400px;
		max-width: 95%;
	}
	.access .box h3 {
		padding: 12px 10px;
		font-size: 23px;
		line-height: 1.3;
	}
	.access .box .body {
		background-color: #f9f7ee;
		padding: 20px 2.6vw;
	}
	.access .box .img {
		margin-top: 20px;
		flex-direction: column;
		gap: 30px;
	}
	.access .subArea {
		padding: 0 2.6vw;
		font-size: 14px;
	}
	.access .hasBtn {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}
}

.borderTitle {
	margin: 60px 0 20px;
	border-left: 4px solid #2E6DA4;
	padding-left: 8px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}
.borderTitle:first-child {
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	.borderTitle {
		margin: 30px 0 20px;
	}
}
