@charset "utf-8";

	/* ------  common start ----- */
body {
	font-size: clamp(14px, calc(18 / 480 * 100vw), 18px);
    line-height: 1.5;
   	color: #1a1a1a;
}

.container {
/*メインコンテンツがヘッダーに隠れないようにしている
「--graduateHeaderHeight」の値はjsにて取得（headerの高さ取得）*/
	padding-top: var(--graduateHeaderHeight);
	overflow: hidden;
}

/*font-style, font-weight*/
.fontW300 {
	font-weight: 300;
}
.fontW500 {
	font-weight: 500;
}

/*list-style*/
.listStyle-circle {
	display: flex;
	align-items: center;
}
.listStyle-circle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-right: 0.2em;
	transform: translateY(30%);
}


	/* ------  header start ----- */
.headerWrap {
	width: 100%;
	padding-bottom: 18px;
	border-top: 7px solid #870000;
	background-color: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}
.headerInner {
    max-width: 1280px;
    min-height: 127px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/*.menuBT*/
.menuBT[aria-hidden="true"] {
	display: none;
}
.menuBT[aria-hidden="false"] {
	display: block;
}
.menuBT {
	flex: 0 0 50px;
	margin-top: 5px;
	margin-left: 20px;
}
.menuBT-name {
	display: block;
	color: #1a1a1a;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.5;
	font-family: 'Arial', sans-serif;
}
.menuBT-line {
	display: block;
	width: 100%;
	padding-bottom: 7px;
    transition: transform 0.5s;
}
.menuBT-line:not(:nth-of-type(2)) {
	background-color: #870000;
}
.menuBT-line:nth-of-type(2) {
	background-color: #b74e4e;
	margin: 7px 0;
}
/*.menuBT 押下時*/
.MenuOpen .menuBT-line:nth-of-type(2) {
	background-color: transparent;
}
.MenuOpen .menuBT-line:first-of-type {
	transform: translateY(210%) rotate(45deg);
}
.MenuOpen .menuBT-line:nth-of-type(3) {
	transform: translateY(-200%) rotate(-45deg);
}


/*--.menuWrap--*/
.menuWrap {
	width: 852px;
}
.anotherMenu,
.globalMenu {
	padding-right: 96px;
}
.anotherMenu-list,
.globalMenu-list {
	display: flex;
/*	padding-right: 46px;*/
}
/*.anotherMenu*/
.anotherMenu {
	border-bottom: 1px solid #cbcbcb;
}
.anotherMenu-list {
	height: 53px;
	align-items: flex-end;
	gap: 0 25px;
	padding-top: 30px;
	padding-bottom: 10px;
}
.anotherMenu-item a {
	font-size: initial;
	display: flex;
	align-items: center;
}
.anotherMenu-item.listStyle-circle::before {
	background-color: #dd729e;
}
.anotherMenu-item a:hover {
    opacity: 0.7;
}
/*.globalMenu*/
.globalMenu {
	width: 100%;
}
.globalMenu-list {
	width: 100%;
	height: 73px;
	align-items: flex-end;
	gap: 0 20px;
}
.globalMenu-item > a {
	font-size: 20px;
	display: flex;
	justify-content: center;
	padding-bottom: 18px;
	position: relative;
}
.globalMenu-item > a {
	font-size: 20px;
	display: flex;
	justify-content: center;
	padding-bottom: 18px;
	position: relative;
}
.globalMenu-item > a:not(.anotherLink a)::before {
	content: "";
	width: 50px;
	padding-top: 0;
	background-color: #B74e4e;
	position: absolute;
	bottom: 0;
	transition: padding-top 0.5s;
}
.globalMenu-item > a:not(.anotherLink a):hover::before {
	padding-top: 5px;
}
.anotherMenu-item a,
.globalMenu-item > a {
	line-height: 1;
}
/*矢印(サブメニューを持つ印)*/
.hasSubmenu-arrow {
	align-self: flex-end;
	margin-left: 5px;
}
.hasSubmenu-arrow::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
	background: url(../img/graduate/arrow.svg) no-repeat center center;
}
/*.subMenu*/
.subMenu {
	display: none;
	width: 100vw;
	height: 80px;
	background-color: #f9f5e5;
	position: absolute;
	left: 50%;
	top: 145px;
	transform: translateX(-50%);
}
.subMenu-list {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}
.subMenu-list a {
	font-size: 18px;
	line-height: 1.1;
	display: flex;
	align-items: center;
}
.subMenu-list a:hover {
	text-decoration: underline;
}
.subMenu-arrow {
    width: 7px;
    height: 7px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #c6b198;
    transform: rotate(45deg);
    margin-right: 12px;
}
.subMenu-list {
	 list-style: none;
}
/*.anotherLink*/
.anotherLink {
	height: 101%;
	position: absolute;
	right: 20px;
	top: -1%;
}
.anotherLink a {
	width: 96px;
	height: 100%;
	align-items: flex-end;
	padding-bottom: 18px;
	text-align: center;
	color: #ffffff;
	line-height: 1.35;
	background-color: #870000;
	transition: color 0.5s, background-color 0.5s;
}
.anotherLink a:hover {
	color: #870000;
	background-color: #c6b198;
}


	/* ------  header end ----- */


	/* ------  main start ----- */
main section {
	line-height: 1;
}
.contWrap {
	max-width: 1068px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}

/*display:flex*/
.flexWrap {
	display: flex;
	flex-wrap: wrap;
}
/*gap*/
.messageItem-wrap,
.featureItem-wrap,
.aimCPitem-wrap,
.contText-wrap {
	gap: 0 40px;
}
.contText,
.contImg,
.offCampus-wrap,
.onCampus-wrap {
	flex: 1;
}

/*セクション内パディング*/
.message,
.tieUp,
.inquiry {
	padding-top: 105px;
}
.feature,
.aimCP,
.entranceExam-data,
.tieUp {
	padding-bottom: min(110px, calc(110 / 480 * 100vw));
}

/*セクション区切り線*/
.sectionBorder-top {
	border-top: 1px solid #cbcbcb;
}

/*本文line-height*/
.message .contText,
.featureItem-text,
.aimCPitem .contText,
.offCampus-wrap p,
.onCampus-wrap p,
.offCampus-wrap .offCampus-list,
.onCampus-wrap .onCampus-list,
.relationItem dd > p,
.relationNote,
.entranceExam-dataWrap p:not([class="fontW300"]),
.courseExample-list dd,
.tieUpItem p,
.inquiryNote {
	line-height: 1.77778;
}

/*文字詰め*/
.linkBT-wrap .linkBT-text,
.contTitle,
.contSubTitle,
.courseExample-listItem dd li {
	font-feature-settings: "palt";
	letter-spacing: 0.005em;
}
/*h2 h3*/
.contTitle,
.contSubTitle  {
	color: #870000;
}
/*h2*/
.contTitle {
	font-size: clamp(30px, calc(36 / 768 * 100vw), 36px);
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 70px;
}
.courseExample .contTitle,
.tieUp .contTitle {
	margin-bottom: min(65px, calc(65 / 480 * 100vw));
	}

/*h3*/
.contSubTitle {
	font-size: min(24px, calc(24 / 480 * 100vw));
}

/*見出し下線*/
.decorationLine {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.decorationLine::after {
	content: "";
	background-color: #c6b198;
}
/*h2 見出し下線*/
.contTitle.decorationLine::after {
	width: 50px;
	padding-top: 3px;
	margin-top: 35px;	
}


/* リンクボタン .linkBT-wrap*//*:hoverのスタイルは「PCのみに適用（モバイルには適用させない）」箇所に記入*/
.linkBT-wrap {
    width: 100%;
   	min-height: 50px;
    margin-left: auto;
    margin-right: auto;
	position: relative;
}
.linkBT-wrap a,
.linkBT-wrap a::before,
.linkBT-wrap a > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.linkBT-wrap a {
	display: block;
    width: 100%;
   	height: 100%;
	color: #ffffff;
}
.linkBT-wrap a::before {
	content: "";
	display: block;
    width: 100%;
   	height: 100%;
   	background-color: #870000;
	border-radius: 9999px;
	transition: background-color 0.5s, border-color 0.5s;
}
.linkBT-wrap a > div {
	width: fit-content;
	padding-bottom: 1px;
	white-space: nowrap;
	font-size: 21px;
	line-height: 1;
}
.linkBT-text {
	margin-right: 0.57142em;
	padding-left: 0.95238em;
    position: relative;
   	transition: color 0.5s;
}
.linkBT-text,
.linkBT-icon {
	vertical-align: baseline;
}
.linkBT-text .spHide {
	display: inline-block;
}
.linkBT-icon {
	stroke: currentColor;
	transition: stroke 0.5s;
}

/*リンク先が無い為、リンクボタンを無効化*/
.canNotClick {
	pointer-events: none;
}
.canNotClick:focus,
.canNotClick a:focus {
	outline: none;
}

/*矢印 .arrow*/
.arrow::before,
.arrow::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #ffffff;
    position: absolute;
    left: 0%;
    top: 50%;
    transition: border-color 0.5s;
}
.arrow::before {
    transform: translate(70%, -40%) rotate(45deg);
}
.arrow::after {
    transform: translate(0%, -40%) rotate(45deg);
}

/*角丸*/
.featureItem,
.aimCPitem-wrap img,
.aimCP .contImg-wrap img,
.entranceExam-dataWrap img {
	border-radius: 8px; 
}


/*緑・白のストライプ*/
/*最外要素に｢.stripePoint｣を追加の事*/
.stripePoint {
	padding-top: min(461px, calc(461 / 1240 * 100vw));
	position: relative;
}
.stripePoint::before {
	content: "";
	width: 100vw;
	position: absolute;
	left: 0;
	top: 0;	
	z-index: -2;
}
.stripePoint::before {
	/*ストライプをsvgで実装*/
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX0RYSXgiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHdpZHRoPSI4LjUiIGhlaWdodD0iOC41IiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48bGluZSB4MT0iMCIgeT0iMCIgeDI9IjAiIHkyPSI4LjUiIHN0cm9rZT0iI0RFQjdBQSIgc3Ryb2tlLXdpZHRoPSIzIi8+PC9wYXR0ZXJuPjwvZGVmcz4gPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuX0RYSXgpIiBvcGFjaXR5PSIxIi8+PC9zdmc+');
	background-color: #d8ab9c;
}

/*ストライプ上の画像*/
.stripeOn-image {
	width: min(1028px, calc(1028 / 1240 * 100vw));
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}

/* ヘッダー固定によるリンク先隠れ防止 */
[id^="link-"]:target {
	scroll-margin-top: var(--graduateHeaderHeight);/*「--graduateHeaderHeight」の値はjsにて取得（headerの高さ取得）*/
}


/*-- .mainVisual --*/
.mainVisual {
	width: 100%;
	padding-bottom: min(657px, calc(657 / 1240 * 100vw));
	position: relative;
}
.mainVisual::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.mainVisual-img {
	width: min(1920px, calc(1920 / 1240 * 100vw));
	padding-bottom: min(657px, calc(657 / 1240 * 100vw));
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	z-index: -1;
}
.mainVisual-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

/*-- .siteNote --*/
.siteNote {
	width: 100%;
	min-height: 50px;
	padding: 4px 20px 6px;
	background-color: #755b49;
	display: flex;
	justify-content: center;
	align-items: center;
}
.siteNote small[class="fontW500"] {
	color: #ffffff;
    font-size: clamp(16px, calc(18 / 640 * 100vw), 18px);
}
.siteNote small[class="fontW500"] br {
    display: none;
}



/*-- .notice --*/
.notice {
	background-color: #c46e6e;
	padding: 60px 0;
	margin-top: 30px;
}
.notice .contTitle {
	color: #ffffff;
	line-height: 1;
	margin-bottom: 60px;
}
.notice .decorationLine::after {
    background-color: #ffffff;
}
.notice .linkBT-wrap a,
.message .linkBT-wrap a,
.aimCP .linkBT-wrap a,
.entranceExam-data .linkBT-wrap a,
.tieUp .linkBT-wrap a {
    max-width: 550px;
}
.notice .linkBT-wrap a {
    color: #870000;
}
.notice .linkBT-wrap a::before {
    background-color: #ffffff;
}

.arrow::before,
.arrow::after {
    border-color: inherit;
}


/*-- .message --*/
.message {
	padding-bottom: 120px;
}
.message .contText p:first-of-type {
	margin-top: -7px;
}
.message .contText p:not(:first-of-type) {
	margin-top: min(30px, calc(30 / 480 * 100vw));
}
.message figure {
	padding-left: calc(68 / 494 * 100%);
}
.message figcaption {
	padding-top: 25px;
	text-align: right;
	font-size: 24px;
}
.message .linkBT-wrap {
    margin-top: clamp(50px, calc(61 / 1068 * 100vw), 61px);
}


/*-- .feature --*/
.stripePoint .contTitle {
	width: clamp(532px, calc(812 / 1240 * 100vw), 812px);
	padding-top: clamp(57px, calc(60 / 1240 * 100vw), 60px);
	background-color: #ffffff;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.featureItem {
	flex: 1;
	border: 1px solid #870000;
	padding-top: min(50px, calc(50 / 480 * 100vw));
	padding-bottom: clamp(63px, calc(70 / 480 * 100vw), 70px);
}
.counter-feature {
	counter-increment: feature;
}
.featureItem-title:before {
	content: counter(feature);
	width: min(80px, calc(80 / 480 * 100vw));
	height: min(80px, calc(80 / 480 * 100vw));
	background-color: #b74e4e;
	border-radius: 50%;
	text-align: center;
	font-size: min(45px, calc(45 / 480 * 100vw));
	font-weight: 300;
	font-family: 'Noto Serif JP', serif;
	color: #ffffff;
	line-height: 1.66666;
	margin-bottom: min(40px, calc(40 / 480 * 100vw));
}
.featureItem .decorationLine::after {
	width: min(30px, calc(30 / 480 * 100vw));
    padding-top: 2px;
    margin-top: min(20px, calc(20 / 480 * 100vw));
}
.featureItem-text {
	max-width: fit-content;
	padding: 0 min(55px, calc(55 / 480 * 100vw));
	margin: min(33px, calc(33 / 480 * 100vw)) auto 0;
}
.feature .linkBT-wrap {
	padding: 0 20px;
	margin-top: min(53px, calc(53 / 480 * 100vw));
}
.feature .linkBT-wrap a {
	max-width: clamp(350px, calc(400 / 640 * 100vw), 400px);
	min-width: 300px;
}

/*ストライプ背景*/
.feature.stripePoint::before,
.aimCP.stripePoint::before {
	padding-top: min(552px, calc(552 / 1240 * 100vw));
}


/*-- .aimCP --*/
.aimCP.stripePoint .contTitle br {
	display: none;
}
.aimCP .linkBT-wrap {
    margin-top: 43px;
}
.aimCP .linkBT-wrap a {
	max-width: 550px;
}
.aimCP .contImg-wrap {
	gap: 8px;
}
.aimCPitem {
	padding-top: 8px;
}
.aimCPitem:not(:first-of-type) {
	margin-top: 80px;
}
.aimCPitem-title {	
	padding: 0 0 23px 48px;
	border-bottom: 1px solid;
	position: relative;
}
.counter-aimCP {
	counter-increment: aim;
}
.aimCPitem-title::before {
	content: counter(aim);
	font-size: 52px;
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-76%);
}
.aimCPitem-title::after {
	content: "";
	display: block;
	width: min(486px, calc(486 / 1068 * 100vw));
	height: 7px;
	background-color: #e5a38c;
	position: absolute;
	left: 0;
	bottom: 0;
}
/*.aimCPitem-wrap*/
.aimCPitem-wrap.sectionBorder-top {
	margin-top: 40px;
}
.aimCPitem .contText,
.aimCPitem .contImg,
.aimCPitem .offCampus-wrap,
.aimCPitem .onCampus-wrap {
    padding-top: min(40px, calc(40 / 480 * 100vw));
}
.aimCPitem-wrap .contText {
    margin-top: -7px;
}
.aimCPitem-wrap p:not(:first-of-type) {
    margin-top: min(30px, calc(30 / 480 * 100vw));
}
.aimCPitem-wrap p[aria-labelledby="SubText1"],
.contText-wrap p[aria-labelledby="SubText2"] {
	line-height: 1;
	padding-top: 7px;
	margin-top: 0;
	text-indent: -0.55555em;
}

/*.offCampus-wrap .onCampus-wrap*/
/*
.supText {
	font-size: 13px;
	vertical-align: text-top;
}*/
.onCampus,
.offCampus {
	font-size: clamp(16px, calc(20 / 480 * 100vw), 20px);
	color: #bc215f;
	letter-spacing: 0.15em;
	margin-bottom: min(8px, calc(8 / 480 * 100vw));
}

/*.trainingSystem .onCampus-list*/
.onCampus-list,
.offCampus-list {
	list-style-type: decimal;
	padding-left: 1em;
}
.trainingSystem .offCampus-list li:not(:first-child),
.trainingSystem .onCampus-list li:not(:first-child):not(:nth-child(4)) {
	margin-top: 30px;
}
.trainingSystem .contImg {
    padding-top: 33px;
}
.onCampus-list {
	column-count: 2;
	column-gap: 58px;
}
.trainingSystem .onCampus-list li {
	page-beak-inside: avoid;
	break-inside: avoid;
}
/*.linkBT-wrap*/
.aimCP .linkBT-text .spShow {
	display: none;
}


/*-- .relation --*/
.relation {
	width: 100%;
	padding-bottom: min(103px, calc(103 / 480 * 100vw));
	position: relative;
}
.relation::before {
	content: "";
	display: block;
	width: 100vw;
	padding-bottom: 467px;
	background-color: #f9f5e5;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}
.relation::after {
	content: "";
	display: block;
	width: 100vw;
	height: 164px;
	background-image: linear-gradient(to right, #bc215f 50%, #c0272d 50% 100%);
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}
.relationWrap {
	height: 467px;
}
.relationItem.flexWrap {
	flex-direction: column;
}
/*.relationItem*/
.relationItem {
	flex: 1;
	text-align: center;
}
.relationItem:nth-of-type(2) {
	border-left: 1px solid #870000;
	border-right: 1px solid #870000;
}
/*.relationItem dt*/
.relationItem dt {
	width: 100%;
	height: 164px;
	font-size: 28px;
	color: #ffffff;
	padding: 50px 0 25px;
}
.relationItem-center dt {
	background-color: #870000;
}
.relationItem dt::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 35px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	margin-bottom: 25px;
}
.relationItem-left dt::before {
	background-image: url(../img/graduate/kyoin_icon.svg);
	background-size: 50px 27px;
}
.relationItem-center dt::before {
	background-image: url(../img/graduate/curriculum_icon.svg);
}
.relationItem-right dt::before {
	background-image: url(../img/graduate/shikaku_icon.svg);
}
/*.relationItem dd*/
.relationItem dd {
	flex-grow: 1;
	padding: 33px 0 35px;
}
.relationItem dd.flexWrap {
	justify-content: center;
}
.qualificationName {
	display: block;
	font-size: clamp(16px, calc(21 / 480 * 100vw), 21px);
	line-height: 1.52380;
	padding-top: 1px;
	padding-bottom: min(15px, calc(15 / 480 * 100vw));
	margin-bottom: min(13px, calc(13 / 480 * 100vw));
 	position: relative;
}
.qualificationName::after {
	content: "";
	display: block;
	width: 100px;
	border-bottom: 1px solid;
	position: absolute;
	right: 50%;
	bottom: 0;
	transform: translateX(50%);
}
/*.relationItem-bt*/
.relationItem-bt {
    width: 250px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #870000;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-color 0.5s;
}
.relationItem-bt a {
	text-align: initial;
	font-size: clamp(14px, calc(21 / 480 * 100vw), 21px);
	color: #870000;
}
.relationItem-bt a::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.relationItem-bt .linkBT-text {
	padding-left: 0;
	margin-right: 0;
}
.relationItem-bt .linkBT-icon {
    stroke: #b74e4e;
    margin-left: 0.38095em;
}
/*.relationNote*/
.relationNote {
	text-align: center;
	padding-top: min(23px, calc(23 / 480 * 100vw));
}
.relationNote br {
	display: none;
}


/*-- .entranceExam-data --*/
.entranceExam-dataWrap {
	max-width: 895px;
}
.entranceExam-recommendation,
.entranceExam-system,
.entranceExam-img {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.entranceExam-dataWrap .contSubTitle {
	text-align: center;
	margin-bottom: min(25px, calc(25 / 480 * 100vw));
}
.entranceExam-dataWrap .decorationLine::after {
    width: min(30px, calc(30 / 480 * 100vw));
    padding-top: 2px;
    margin-top: min(25px, calc(25 / 480 * 100vw));
}
/*.entranceExam-capacity*/
.entranceExam-capacity {
	padding-top: min(35px, calc(35 / 480 * 100vw));
	padding-bottom: min(40px, calc(40 / 480 * 100vw));
	border: 1px solid #870000;
	border-radius: 8px;
}
.entranceExam-capacity p {
	font-size: min(40px, calc(40 / 480 * 100vw));
	text-align: center;
}
/*.entranceExam-recommendation*/
.entranceExam-recommendation {
	padding: min(75px, calc(75 / 480 * 100vw)) 0 min(63px, calc(63 / 480 * 100vw));
}
/*.entranceExam-system*/
.entranceExam-system p:last-of-type {
	margin-top: min(31px, calc(31 / 480 * 100vw));
}
/*.entranceExam-img*/
.entranceExam-img {
	margin-top: min(33px, calc(33 / 480 * 100vw));
	margin-bottom: min(50px, calc(50 / 480 * 100vw));
}

/*ストライプ背景*/
.entranceExam-data .stripeOn-image {
    width: min(1125px, calc(1125 / 1240 * 100vw));
}
.entranceExam-data.stripePoint {
	padding-top: min(220px, calc(220 / 1240 * 100vw));
}
.entranceExam-data.stripePoint::before {
	padding-top: min(310px, calc(310 / 1240 * 100vw));
}


/*-- .courseExample --*/
.courseExample {
	background-color: #f9f5e5;
	padding: 60px 0;
}
.courseExample-listArea {
	width: 1280px;
	padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}
.courseExample-list.flexWrap {
	flex-direction: column;
	max-height: 700px;
	gap: min(53px, calc(53 / 480 * 100vw)) 0;
}
.courseExample-list {
	border-left: 1px solid #870000;
	position: relative;
}
.courseExample-list::before,
.courseExample-list::after {
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	border-left: 1px solid  #870000;
	position: absolute;
	top: 0;
}
.courseExample-list::before {
	left: 50%;
	transform: translateX(-206.455px);
}
.courseExample-list::after {
	right: 50%;
	transform: translateX(206.66px);
}
.courseExample-listItem {
	width: calc(100% / 3);
}
.courseExample-listItem dt,
.courseExample-listItem dd {
	padding-left: 15px;
}
.courseExample-listItem dd {
	padding-right: 15px;
}
.courseExample-listItem .contSubTitle {
	letter-spacing: 0.125em; /*3px*/
	margin-bottom: min(13px, calc(13 / 480 * 100vw));
}
.courseExample-listItem .decorationLine {
    align-items: initial;
}
.courseExample-listItem .decorationLine::after {
    width: min(25px, calc(25 / 480 * 100vw));
    padding-top: 2px;
    margin-top: min(10px, calc(10 / 480 * 100vw));
}
.courseExample-listItem dd .spBR {
	display: none;
}


/*-- .tieUp --*/
.tieUpWrap,
.tieUpImage {
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}
.tieUpWrap.flexWrap {
	align-content: flex-start;
    gap: min(80px, calc(80 / 1280 * 100vw));
}
.tieUpItem {
	border-top: 2px solid #870000;
	padding: 25px 0 73px;
}
.tieUpItem .contSubTitle {
	margin-bottom: min(28px, calc(28 / 480 * 100vw));
}
.tieUp .contWrap .linkBT-wrap:not(:first-child) {
	margin-top: clamp(22px, calc(30 / 768 * 100vw), 30px);
}
.tieUp .contWrap .linkBT-wrap:last-child {
	margin-bottom: min(80px, calc(80 / 480 * 100vw));
}
.tieUpImage-area {
	background-color: #c46e6e;
}


/*-- .inquiry --*/
.inquiry {
	padding-bottom: 130px;
	text-align: center;
	border-top: 1px solid #cbcbcb;
}
.inquiry address {
	width: fit-content;
	margin: min(40px, calc(40 / 480 * 100vw)) auto;
}
.contactTel {
	font-size: clamp(20px, calc(24 / 480 * 100vw), 24px);
}
.contactTel:first-of-type + p {
	font-size: clamp(14px, calc(15 / 480 * 100vw), 15px);
	text-align: right;
	margin-top: min(3px, calc(3 / 480 * 100vw));
}
.contactTel:last-of-type {
	margin-top: min(13px, calc(13 / 480 * 100vw));
}
.contactTime {
	font-size: clamp(16px, calc(18 / 480 * 100vw), 18px);
}
.contactTime p.fontW500 {
	font-size: clamp(18px, calc(21 / 480 * 100vw), 21px);
	margin-top: min(10px, calc(10 / 480 * 100vw));
}

	/* ------  main end ----- */

	/* ------  .toTop start ----- */
.toTop {
	position: fixed;
	right: 30px;
	bottom: 40px;
    display: none;
    z-index: 10;
}
.toTop a {
	width: 45px;
	height: 45px;
	background-color: #ffffff;
	border: 1px solid #989898;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.toTop-arrow {
	width: 15px;
    height: 15px;
    border-width: 3px 0 0 3px;
    border-style: solid;
    border-color: #989898;
    transform: translateY(30%) rotate(45deg);
}
	/* ------  .toTop end ----- */

	/* ------  footer start ----- */
.footerLink ul,
.footerLink ul a,
.copyright {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footerLink ul {
	min-height: 60px;
	gap: 20px;
	padding: 10px 20px;
}
.footerLink ul li {
	flex: 0 1 auto;
}
.footerLink ul li:not(:first-child) {
	padding-left: 20px;
	border-left: 1px solid;
}
.footerLink ul a {
	height: 20px;
}
.copyright,
.copyright span {
	font-size: clamp(10px, calc(12 / 480 * 100vw), 12px);
	line-height: 1.33333;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.copyright {
	min-height: 73px;
	padding: 10px 20px;
	text-align: center;
	background-color: #f7f8f9;
}
	/* ------  footer end ----- */

/* PCのみに適用（モバイルには適用させない） */
@media (hover: hover) and (pointer: fine) {

	/*.linkBT-wrap*/
	.linkBT-wrap a:hover {
		color: #870000;

	}
	.linkBT-wrap a:hover::before {
		background-color: #ffffff;
		border-radius: 9999px;
		border: 1px solid  #870000;
	}
	.linkBT-wrap a:hover .arrow::before,
	.linkBT-wrap a:hover .arrow::after {
	    border-color: #870000;
	}
	.linkBT-wrap a:hover .linkBT-icon {
		stroke: #870000;
	}

	/*.notice .linkBT-wrap*/
	.notice .linkBT-wrap a:hover {
		color: #ffffff;
		border: none;
	}
	.notice .linkBT-wrap a:hover::before {
		background-color: #870000;
	}
	.notice .linkBT-wrap a:hover .arrow::before,
	.notice .linkBT-wrap a:hover .arrow::after {
	    border-color: #ffffff;
	}
	.notice .linkBT-wrap a:hover .linkBT-icon {
		stroke: #ffffff;
	}

	/*.relationItem-bt*/
	.relationItem-bt:hover {
	    background-color: #870000;
	}
	.relationItem-bt a:hover {
	    color: #ffffff;
	}
	.relationItem-bt a:hover .linkBT-icon {
	    stroke: #ffffff;
	}

	/*footer*/
	.footerLink ul a:hover {
		text-decoration: underline;
	}


}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.menuBtn:focus:not(:focus-visible),
.mainMenu-item:focus:not(:focus-visible),
.cloneMainMenu-item:focus:not(:focus-visible){
	outline: 0;
}





	/* ------    screen width 1280px   start ----- */

@media screen and (max-width:1280px){

/*-- .courseExample --*/
.courseExample-listArea {
	width: 1068px;
	}
.courseExample-list.flexWrap {
	max-height: 900px;
	}
.courseExample-list::before {
	left: 50%;
	transform: none;
	}
.courseExample-list::after {
	content: none;
	}
.courseExample-listItem {
	width: 50%;
	}


}
	/* ------    screen width 1280px   end ----- */


	/* ------    screen width 1240px   start ----- */

@media screen and (max-width:1240px){


/* .menuBT 押下時、bodyに追加 */
.MenuOpen {
    overflow: hidden;
	}

	/* ------  header start ----- */
.headerWrap {
	padding-bottom: 0;
	}
.headerInner {
    min-height: clamp(75px, calc(90 / 640 * 100vw), 90px);
    padding-left: min(76px, calc(76 / 768 * 100vw));
    padding-right: min(76px, calc(76 / 768 * 100vw));
	}

/*--.menuWrap--*/
.MenuOpen .menuWrap-bg {
    position:fixed;
    top:0;
    left:0;
    width:100%;
	height:100%;/*for old Safari*/
    height:100vh;
    background: rgba(117, 91, 73, 0.9);
    z-index: 990;
	}
.menuWrap {
	display: none;
	}
.MenuOpen .menuWrap {
	color: #ffffff;
	display: flex;
	flex-direction: column;
	padding: 80px min(100px, calc(100 / 768 * 100vw));
	width: fit-content;
	height: auto;
	max-height: calc(var(--windowHeight) - var(--graduateHeaderHeight));/*「画面の高さ」から「headerの高さ」を差引いている */
    overflow: auto;
	position: absolute;
	left: 50%;
	top: var(--graduateHeaderHeight);/*「--graduateHeaderHeight」の値はjsにて取得（headerの高さ取得）*/
	transform: translateX(-50%);
	animation: showMenu 1s ease;
	}

@keyframes showMenu {
	0% {opacity:0;}
	100% {opacity:1;}
	}
.anotherMenu,
.globalMenu {
	width: 280px;
	padding-right: 0;
	}
.anotherMenu-list,
.globalMenu-list {
	flex-direction: column;
	justify-content: inherit;
	padding-right: 0;
	}
/*.anotherMenu*/
.anotherMenu {
	border-bottom: none;
	}
.anotherMenu-list {
	padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
	height: auto;
	align-items: inherit;
	gap: inherit;
	}
.anotherMenu-item {
	margin-top: 25px;
	}
.anotherMenu-item a {
	font-size: 18px;
	padding-bottom: 0;
	}
.anotherMenu-item a,
.globalMenu-item a,
.anotherLink a {
	color: inherit;
	}
.anotherMenu-item.listStyle-circle::before {
    background-color: #ffffff;
	}
.anotherMenu-item a:hover {
    opacity: initial;
	}
/*.globalMenu*/
.globalMenu {
	order: -1;
	}
.globalMenu-list {
	height: auto;
	align-items: inherit;
	padding-left: 0;
	}
.globalMenu-item {
	border-bottom: 1px solid #ffffff;
	}
.globalMenu-item > a {
	height: 60px;
	justify-content: inherit;
	align-items: center;
    padding-left: 20px;
	padding-bottom: 0;
	}
.globalMenu-item > a::before,
.globalMenu-item > a:not(.anotherLink a)::before {
    content: "";
    width: 5px;
    background-color: #d6ed21;
    padding-top: 15px;
    position: static;
    margin-right: 12px;
    }
.globalMenu-item > a:not(.anotherLink a):hover::before {
    padding-top: 15px;
	}
.hasSubmenu-arrow {
    visibility: hidden;
	}
/*.subMenu*/
.MenuOpen .subMenu {
	display: block;
	width: 100%;
	height: auto;
	background-color: inherit;
	position: static;
	transform: inherit;
	}
.subMenu-list {
	height: auto;
	flex-direction: column;
	align-items: inherit;
	gap: 0;
	padding: 12.5px 0;
	border-top: 1px dotted;
	}
.subMenu-list li {
	padding-left: 2.83333em;
	}
.subMenu-list a {
	height: 43px;
}
.subMenu-list a:hover {
	text-decoration: none;
	}
.subMenu-arrow {
    border-color: #d6ed21;
    margin-right: 8px;
	}
/*.anotherLink*/
.anotherLink {
	position: static;
	}
.anotherLink a {
	width: auto;
	background-color: inherit;
	}
.anotherLink a:hover {
    color: #ffffff;
    background-color: inherit;
	}
.anotherLink br{
	display: none;
	}

}
	/* ------    screen width 1240px   end   ----- */


	/* ------    screen width 1068px   start ----- */

@media screen and (max-width:1068px){
	/* ------  main start ----- */
.contWrap {
	max-width: min(576px, calc(576 / 640 * 100vw));
	}
.contText,
.contImg,
.offCampus-wrap,
.onCampus-wrap {
	flex-basis: 100%;
	}
.messageItem-wrap,
.featureItem-wrap,
.aimCPitem-wrap,
.contText-wrap {
    gap: 0;
	}

/*-- .notice --*/
.notice .contTitle {
	margin-bottom: min(50px, calc(50 / 480 * 100vw));
	}

/*-- .message --*/
.messageItem-wrap .contText {
    margin-bottom: 53px;
	}
.message figure {
	max-width: min(436px, calc(436 / 640 * 100vw));
	padding-left: 0;
	margin-left: auto;
	margin-right: auto;
	}

/*-- .feature --*/
.featureItem-wrap {
	justify-content: center;
    gap: 30px;
	}
.featureItem {
    flex: 0 1 495px;
    }

/*-- .aimCP --*/
.aimCP .contImg-wrap {
	flex-wrap: initial;
    gap: 4px;
	}
/*.trainingSystem .onCampus-list*/
.onCampus-list {
	column-count: 1;
	column-gap: initial;
	}
.trainingSystem .onCampus-list li:nth-child(4) {
    margin-top: 30px;
	}

/*-- .relation --*/
.relation::before {
	content: none;
	}
.relation::after {
	content: none;
	}
.relationWrap {
    height: auto;
    position: relative;
	}
.relationWrap::before,
.relationItem dt::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
	}
.relationWrap::before {
    background-color: #f9f5e5;
	}
.relationItem {
    flex: 1 1 100%;
	}
.relationItem:nth-of-type(2) {
    border: none;
	}
.relationItem dt {
	height: 81px;
	padding: 0;
	line-height: 1.5;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
    position: relative;
	}
.relationItem dt::before {
	width: 50px;
    margin-bottom: 0;
	}
.relationItem-left dt::before {
    padding-top: 27px;
	background-size: contain;
	}
.relationItem-left dt::after {
    background-color: #bc215f;
	}
.relationItem-center dt::after {
    background-color: #870000;
	}
.relationItem-right dt::after {
    background-color: #c0272d;
	}
.relationItem dd {
    padding: min(38px, calc(38 / 480 * 100vw)) 0 min(60px, calc(60 / 480 * 100vw));
	}
.relationItem dd.flexWrap {
    flex-direction: column;
    align-items: center;
	}
.relationItem dd p:last-of-type {
    margin-bottom: 13px;
	}
.relationItem .pcBR {
    display: none;
	}
/*.relationNote*/
.relationNote br {
	display: block;
	}

/*-- .courseExample --*/
.courseExample-listArea {
	width: min(1068px, calc(1068 / 1068 * 100vw));
	}


/*-- .tieUp --*/
.tieUpWrap {
	max-width: clamp(400px, calc(576 / 1068 * 100vw), 576px);
	}


}
	/* ------    screen width 1068px   end   ----- */


	/* ------    screen width 768px   start ----- */

@media screen and (max-width:768px){

	/* ------  main start ----- */
/*緑・白のストライプ*/
/*最外要素に｢.stripePoint｣を追加の事*/
.stripePoint {
	padding-top: min(458px, calc(458 / 768 * 100vw));
	}
/*ストライプ上の画像*/
.stripeOn-image {
	width: min(617px, calc(617 / 768 * 100vw));
	}

/*-- .mainVisual --*/
.mainVisual {
	padding-bottom: min(710px, calc(710 / 768 * 100vw));
	}
.mainVisual-img {
	width: 100%;
	padding-bottom: min(710px, calc(710 / 768 * 100vw));
	}

/*-- .siteNote --*/
.siteNote {
	min-height: clamp(37px, calc(50 / 480 * 100vw), 50px);
	}

/*-- .message --*/
.message {
    padding-bottom: min(110px, calc(110 / 480 * 100vw));
	}
.message figcaption {
	padding-top: min(20px, calc(20 / 480 * 100vw))
	}
.message .linkBT-wrap {
    margin-top: min(50px, calc(50 / 480 * 100vw));
	}

/*-- .feature --*/
.featureItem {
	flex: 1 1 100%;
	}
.stripePoint .contTitle {
	width: clamp(365px, calc(532 / 768 * 100vw), 532px);
	padding-top: clamp(50px, calc(57 / 768 * 100vw), 57px);
	}
/*ストライプ背景*/
.feature.stripePoint::before,
.aimCP.stripePoint::before {
	padding-top: min(551px, calc(551 / 768 * 100vw));
	}

/*-- .aimCP --*/
.aimCPitem-title::after {
	width: 328px;
	}
.aimCPitem .contImg {
    padding-top: min(38px, calc(38 / 480 * 100vw));
	}
/*.trainingSystem*/
.aimCP .trainingSystem .contImg-wrap {
	flex-wrap: wrap;
	gap: 10px 0;
}
.aimCP .trainingSystem .contImg-wrap .contImg:last-of-type {
    padding-top: 0;
	}

/*-- .entranceExam-data --*/
/*ストライプ背景*/
.entranceExam-data .stripeOn-image {
    width: min(617px, calc(617 / 768 * 100vw));
	}
.entranceExam-data.stripePoint {
	padding-top: min(187px, calc(187 / 768 * 100vw));
	}
.entranceExam-data.stripePoint::before {
	padding-top: min(280px, calc(280 / 768 * 100vw));
	}

/*-- .courseExample --*/
.courseExample-listArea {
    width: fit-content;
	}
.courseExample-list.flexWrap {
    max-height: initial;
	}
.courseExample-listItem {
    width: 100%;
	}
.courseExample-list::before {
    content: none;
	}
.courseExample-listItem dd .spBR {
	display: block;
	}

/*-- .tieUp --*/
.tieUpWrap {
	max-width: 400px;
	padding-bottom: min(73px, calc(73 / 480 * 100vw));
	}
.tieUpWrap.flexWrap {
    gap: min(53px, calc(53 / 480 * 100vw)) 0;
	}
.tieUpItem {
    padding: min(25px, calc(25 / 480 * 100vw)) 0 0;
	}
.tieUpImage-area {
	padding: min(60px, calc(60 / 640 * 100vw)) 0;
	}




}
	/* ------    screen width 768px   end   ----- */


	/* ------    screen width 640px   start ----- */

@media screen and (max-width:640px){

	/* ------  main start ----- */
/*-- .siteNote --*/
.siteNote .spHide {
 	display: none;
 	}

	/* ------  footer start ----- */
.copyright {
	flex-direction: column;
	flex-wrap: wrap;
	min-height: max(78px, calc(73 / 640 * 100vw));
	}



}
	/* ------    screen width 640px   end   ----- */


	/* ------    screen width 480px   start ----- */

@media screen and (max-width:480px){

	/* ------  header start ----- */
.headerInner {
    min-height: 75px;
    justify-content: initial;
    padding-left: clamp(20px, calc(30 / 480 * 100vw), 30px);
    padding-right: clamp(20px, calc(30 / 480 * 100vw), 30px);
    }
/*.pageTitle*/
.pageTitle {
	margin-right: auto;
	}
/*.menuBT*/
.menuBT {
	flex: 0 0 40px;
	}
.menuBT-line {
	padding-bottom: 6px;
	}
.menuBT-line:nth-of-type(2) {
	margin: 6px 0;
	}

	/* ------  main start ----- */
.contWrap {
    max-width: clamp(320px, calc(405 / 480 * 100vw), 405px);
	}
/*h2*/
.contTitle {
	font-size: clamp(25px, calc(32 / 480 * 100vw), 32px);
	margin-bottom: min(70px, calc(70 / 480 * 100vw));
}

/*h2 見出し下線*/
.contTitle.decorationLine::after {
	width: min(50px, calc(50 / 480 * 100vw));
	margin-top: min(35px, calc(35 / 480 * 100vw));
}

/*.linkBT-wrap*/
.linkBT-wrap {
	width: clamp(245px, calc(365 / 480 * 100vw), 365px);
	min-height: clamp(30px, calc(50 / 480 * 100vw), 50px);
	}
.linkBT-wrap a > div {
	font-size: clamp(14px, calc(21 / 480 * 100vw), 21px);
	padding-bottom: 0;
	}
.linkBT-text .spHide {
	display: none;
	}
.arrow::before, .arrow::after {
    width: clamp(6px, calc(7 / 480 * 100vw), 7px);
    height: clamp(6px, calc(7 / 480 * 100vw), 7px);
	}
.arrow::before {
    transform: translate(70%, -45%) rotate(45deg);
	}
.arrow::after {
    transform: translate(0%, -45%) rotate(45deg);
	}
.linkBT-icon {
    width: clamp(12px, calc(16 / 480 * 100vw), 16px);
    height: clamp(12px, calc(16 / 480 * 100vw), 16px);
	}

/*緑・白のストライプ*/
/*最外要素に｢.stripePoint｣を追加の事*/
.stripePoint {
	padding-top: clamp(290px, calc(440 / 480 * 100vw), 440px);
	}
/*ストライプ上の画像*/
.stripeOn-image {
	width: min(440px, calc(440 / 480 * 100vw));
	}

/*-- .mainVisual --*/
.mainVisual {
	padding-bottom: min(594px, calc(594 / 480 * 100vw));
	}
.mainVisual-img {
	width: 100%;
	padding-bottom: min(594px, calc(594 / 480 * 100vw));
	}

/*-- .siteNote --*/
.siteNote small[class="fontW500"] {
    font-size: clamp(11px, calc(16 / 480 * 100vw), 16px);
    line-height: 1.18181;
    text-align: center;
	}
.siteNote small[class="fontW500"] br {
    display: block;
	}

/*-- .message --*/
.message {
	padding-bottom: min(110px, calc(110 / 480 * 100vw));
	}
.message, .tieUp, .inquiry {
    padding-top: min(100px, calc(100 / 480 * 100vw));
	}
.messageItem-wrap .contText {
    margin-bottom: min(53px, calc(53 / 480 * 100vw));
	}
.message figure {
	max-width: 100%;
	}
.message figcaption {
    font-size: min(21px, calc(21 / 480 * 100vw));
	}
.message .linkBT-wrap {
    margin-top: min(50px, calc(50 / 480 * 100vw));
	}

/*-- .feature --*/
.stripePoint .contTitle {
    width: clamp(280px, calc(365 / 480 * 100vw), 365px);
    padding-top: min(50px, calc(50 / 480 * 100vw));
	margin-bottom: min(70px, calc(70 / 480 * 100vw));
	}
.featureItem {
	padding-bottom: min(63px, calc(63 / 480 * 100vw));
	}
.feature .linkBT-wrap a {
	max-width: clamp(213px, calc(320 / 480 * 100vw), 320px);
	min-width: initial;
	}
/*ストライプ背景*/
.feature.stripePoint::before,
.aimCP.stripePoint::before {
	padding-top: min(522px, calc(522 / 480 * 100vw));
	}

/*-- .aimCP --*/
.aimCPitem {
	padding-top: 0;
	}
.aimCPitem:not(:first-of-type) {
	margin-top: min(72px, calc(72 / 480 * 100vw));
	}
.aimCP.stripePoint .contTitle {
	line-height: 1.28125;
    padding-top: clamp(30px, calc(46 / 480 * 100vw), 46px);
	}
.aimCP.stripePoint .contTitle br {
	display: block;
	}
.contTitle.decorationLine::after {
    margin-top: clamp(20px, calc(31 / 480 * 100vw), 31px);
	}
.aimCPitem-title {	
	text-align: center;
	padding: min(78px, calc(78 / 480 * 100vw)) 0 min(23px, calc(23 / 480 * 100vw)) 0;
	}
.aimCPitem-title::before {
	font-size: min(52px, calc(52 / 480 * 100vw));
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	}
.aimCPitem-title::after {
	width: min(80px, calc(80 / 480 * 100vw));
	height: min(7px, calc(7 / 480 * 100vw));
	left: 50%;
	transform: translateX(-50%);
	}
.aimCP .linkBT-text .spShow {
	display: inline-block;
	}

/*-- .relation --*/
.relation .contWrap {
    max-width: 100%;
	}
.relationItem dt {
	font-size: min(28px, calc(28 / 480 * 100vw));
	height: min(73px, calc(73 / 480 * 100vw));
	gap: 0 min(15px, calc(15 / 480 * 100vw));
	}
.relationItem dt::before {
	width: min(50px, calc(50 / 480 * 100vw));
    padding-top: min(35px, calc(35 / 480 * 100vw));
	}
.relationItem-left dt::before {
    padding-top: min(27px, calc(27 / 480 * 100vw));
	}
.relationItem-bt {
    width: clamp(200px, calc(250 / 480 * 100vw), 250px);
    height: clamp(72px, calc(90 / 480 * 100vw), 90px);
	}

/*-- .entranceExam-data --*/
/*ストライプ背景*/
.entranceExam-data .stripeOn-image {
    width: min(440px, calc(440 / 480 * 100vw));
	}
.entranceExam-data.stripePoint {
	padding-top: min(187px, calc(187 / 480 * 100vw));
	}
.entranceExam-data.stripePoint::before {
	padding-top: min(267px, calc(267 / 480 * 100vw));
	}

/*-- .courseExample --*/
.courseExample-listArea {
    width: 100%;
    padding-left: clamp(20px, calc(30 / 480 * 100vw), 30px);
    padding-right: clamp(20px, calc(30 / 480 * 100vw), 30px);
	}
.courseExample-listItem dd {
    padding-right: 0;
	}
.courseExample-listItem dd .spBR {
	display: none;
	}

/*-- .tieUp --*/
.tieUpWrap {
	max-width: 405px;
	}
.tieUpImage-area {
	padding: min(37px, calc(37 / 480 * 100vw)) 0;
	}
.tieUpImage {
	padding-left: 12px;
	padding-right: 12px;
	}

/*-- .inquiry --*/
.inquiry .contWrap {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
	}

	/* ------  footer start ----- */
.footerLink ul {
	width: fit-content;
	min-height: clamp(76px, calc(114 / 480 * 100vw), 114px);
	flex-direction: column;
	align-items: initial;
	gap: 0;
	margin: 0 auto;
	}
.footerLink ul li {
	position: relative;
	}
.footerLink ul li,
.footerLink ul li:not(:first-child) {
	padding-left: clamp(8px, calc(12 / 480 * 100vw), 12px);
	}
.footerLink ul li::before {
	content: "";
	display: inline-block;
	width: clamp(3px, calc(5 / 480 * 100vw), 5px);
	padding-top: clamp(3px, calc(5 / 480 * 100vw), 5px);
	background-color: #1a1a1a;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateX(-50%);
	}
.footerLink ul li:not(:first-child) {
	border-left: none;
	margin-top: 10px;
}
.footerLink ul a {
	display: block;
    height: auto;
    font-size: clamp(14px, calc(18 / 480 * 100vw), 18px);
    line-height: 1;
	}


}
	/* ------    screen width 480px   end   ----- */


	/* ------    print   start ----- */
@media print{

  body {
    width: 1400px;
  	}
.container {
	padding-top: 0 !important;
	overflow: visible !important;
	}
.headerWrap {
	position: static !important;
	}

/*緑・白のストライプ*/
.stripePoint::before {
	width: 100% !important;
	}

/*セクション区切り線*/
.sectionBorder-top {
	border-top: 2px solid #cbcbcb;
	}

.menuBT,
.subMenu,
.toTop {
	display: none !important;
	}

/*.anotherMenu*/
.anotherMenu {
	border-bottom: 2px solid #cbcbcb;
	}

/*-- .mainVisual --*/
.mainVisual {
	padding-bottom: 479px;
    margin: 0 auto !important;
	}
.mainVisual-img {
	width: 100%;
	height: 100%;
	padding-bottom: 0;
	}

/*-- .feature --*/
.feature {
	break-inside: avoid;/*改行禁止*/
	}
.featureItem {
	border: 2px solid #870000;
	}

/*-- .aimCP --*/
.aimCP {
	break-before: page;/*改ページ*/
	}
.aimCPitem-title {	
	border-bottom: 2px solid;
	}

/*-- .relation --*/
.relation {
	break-before: page;/*改ページ*/
	}
.relation::before,
.relation::after {
	width: 100% !important;
	}
.relationItem:nth-of-type(2) {
	border-left: 2px solid #870000;
	border-right: 2px solid #870000;
}
.qualificationName::after {
	border-bottom: 2px solid;
	}
/*.relationItem-bt*/
.relationItem-bt {
    border: 2px solid #870000;
	}

/*-- .entranceExam-data --*/
/*.entranceExam-capacity*/
.entranceExam-capacity {
	border: 2px solid #870000;
	}

/*-- .courseExample --*/
.courseExample-list {
	border-left: 2px solid #870000;
	}
.courseExample-list::before,
.courseExample-list::after {
	border-left: 2px solid  #870000;
	}


}
	/* ------    print   end   ----- */
