#header {
	height: 0;
}
#home {
	overflow-x: hidden;
}
/* ===========================================================================
  br
============================================================================= */
.br-s {
	display: none;
}
.br-m {
	display: none;
}

/* ===========================================================================
  margin
============================================================================= */
.mt00 { margin-top: 0 !important;}
.mt05 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt20 { margin-top: 20px !important;}
.mt30 { margin-top: 30px !important;}
.mt40 { margin-top: 40px !important;}
.mt50 { margin-top: 50px !important;}
.mt60 { margin-top: 60px !important;}
.mt70 { margin-top: 70px !important;}
.mt80 { margin-top: 80px !important;}
.mt90 { margin-top: 90px !important;}
.mt100 { margin-top: 100px !important;}
.mb00 { margin-bottom: 0 !important;}
.mb05 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb50 { margin-bottom: 50px !important;}
.mb60 { margin-bottom: 60px !important;}
.mb70 { margin-bottom: 70px !important;}
.mb80 { margin-bottom: 80px !important;}
.mb90 { margin-bottom: 90px !important;}
.mb100 { margin-bottom: 100px !important;}


/* ===========================================================================
  p-mainVisual
============================================================================= */
.p-mainVisual {
	width: 100%;
	height: 630px;
	background: url("../img/index_new/mv_bg_240508.jpg") no-repeat center / cover;
}
/* SP時の記述にも背景画像の指定があるので注意 */
.p-mainVisual_text {
	/*color: #1b2949;*/
	color: #fff;
	font-size: 4.0rem;
	letter-spacing: .2em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	animation: fade-text 2s forwards;
	margin-top: 45px;
}
@keyframes fade-text {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.p-mainVisual_inner {
	width: 94%;
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
}
@keyframes fade-inner {
	0% {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.p-mainVisual_box {
	display: flex;
	width: 100%;
	height: calc(630px - 123px);
	padding-top: 43px;
}
.p-mainVisual_main {
	width: calc(100% - 380px);
	display: flex;
	align-items: center;
}
.p-mainVisual_slide {
	background-color: #fff;
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	margin-top: 20px;
	animation: fade-inner 2s forwards;
}
.p-mainVisual_slideLink {
	display: block;
	transition: opacity .2s;
}
.p-mainVisual_slideLink:hover {
	opacity: .8;
}
.slick-dots li button:before {
	opacity: 1;
	color: #dcdcdc;
	font-size: 8px;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: .8;
}
.slick-dots li.slick-active button:before {
	opacity: 1;
	color:  #1b2949;
}
.p-mainVisual_side {
	width: 380px;
	box-sizing: border-box;
	padding: 30px 20px;
	background-color: rgba(255, 255, 255, 0.6);
	animation: fade-inner 2s forwards;
}
.p-mainVisual_bnr {
	display: block;
	transition: opacity .2s;
}
.p-mainVisual_bnr:nth-child(n + 2) {
	margin-top: 10px;
}
.p-mainVisual_bnr:hover,
.p-mainVisual_bnr-system:hover {
	opacity: .8;
}
.p-mainVisual_bnr-system {
	display: block;
	transition: opacity .2s;
	margin-top: 5px;
}
/* ===========================================================================
  p-navi
============================================================================= */
.p-navi {
	margin-top: 10px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.p-navi_title {
	display: block;
	border-bottom: solid 3px #0065dc;
	box-sizing: border-box;
	width: 100%;
	padding: 15px 20px;
	text-align: center;
	transition: background-color .2s;
}
.p-navi_titleText {
	display: block;
	position: relative;
	padding-right: 20px;
}
.p-navi_titleText::after {
	display: inline-block;
	position: absolute;
	top: 5px;
	right: 0;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	border-top: solid 2px #0065dc;
	border-right: solid 2px #0065dc;
	content: '';
	animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove{
	0% {
		right: -2px;
	}
	50% {
		right: 2px;
	}
	100% {
		right: -2px;
	}
 }
.p-navi_title:hover {
	background-color: #c7dffc;
}
.p-navi_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 15px 20px;
}
.p-navi_bnr {
	width: 48%;
	transition: opacity .2s;
}
.p-navi_bnr:hover {
	opacity: .8;
}
.p-navi_btn {
	display: block;
	background-color: #0065dc;
	color: #fff;
	text-align: center;
	padding: 20px;
	line-height: 1;
	transition: background-color .2s;
}
.p-navi_btn:hover {
	color: #fff;
	background-color: #00358d;
	text-decoration: none;
}
.p-navi_btn:visited {
	color: #fff;
}
.p-navi_btnText {
	display: block;
	position: relative;
	padding: 0 20px;
}
.p-navi_btnText::after {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	content: '';
}
/* ===========================================================================
  p-facultyLink
============================================================================= */
.p-facultyLink {
	background-color: #1b2949;
}
.p-facultyLink_head {
	display: none;
}
.p-facultyLink_body {
	width: 94%;
	max-width: 1170px;
	margin-inline: auto;
	border-left: solid 1px #444f6a;
}
.p-facultyLink_list {
	display: flex;
	flex-wrap: wrap;
}
.p-facultyLink_item {
	border-right: solid 1px #444f6a;
	background-color: #1b2949;
	flex-basis: calc(100%/6);
	box-sizing: border-box;
	border-top: solid 5px;
}
.p-facultyLink_item.is-literature {
	border-top-color: #deb800;
}
.p-facultyLink_item.is-education {
	border-top-color: #fbe759;
}
.p-facultyLink_item.is-human {
	border-top-color: #a791af;
}
.p-facultyLink_item.is-psychology {
	border-top-color: #a2ca0e;
}
.p-facultyLink_item.is-creation {
	border-top-color: #5ab6d3;
}
.p-facultyLink_item.is-architecture {
	border-top-color: #5fbcf6;
}
.p-facultyLink_item.is-health {
	border-top-color: #ed7859;
}
.p-facultyLink_item.is-nutrition {
	border-top-color: #009780;
}
.p-facultyLink_item.is-welfare {
	border-top-color: #e9999e;
}
.p-facultyLink_item.is-communication {
	border-top-color: #f5a933;
}
.p-facultyLink_item.is-business {
	border-top-color: #87b2d8;
}
.p-facultyLink_item.is-global {
	border-top-color: #70bfc4;
}
.p-facultyLink_link {
	font-size: 1.3rem;
	line-height: 1.4;
	color: #fff;
	padding: 15px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: calc(100% - 20px);
	min-height: 40px;
	transition: background-color .2s;
}
.p-facultyLink_link:visited {
	color: #fff;
}
.p-facultyLink_link:hover {
	background-color: #444f6a;
	text-decoration: none;
}
.p-facultyLink_subText {
	font-size: 10px;
}
/* ===========================================================================
  p-newsHeading
============================================================================= */
.p-newsHeading {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 20px;
}
.p-newsHeading_title {
	width: 250px;
}
.p-newsHeading_news {
	width: calc(100% - 250px);
}
/* ===========================================================================
  p-importantNews
============================================================================= */
.p-importantNews {
	border-bottom: solid 3px #0065dc;
	padding-bottom: 25px;
}
.p-importantNews_item {
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
}
.p-importantNews_item:nth-child(n + 2) {
	margin-top: 10px;
}
.p-importantNews_date {
	width: 125px;
}
.p-importantNews_link {
	color: #0065dc;
	width: calc(100% - 250px);
	margin-left: 15px;
	font-weight: bold;
}
.p-importantNews_link:visited {
	color: #0065dc;
}
.p-importantNews_link:hover {
	text-decoration: underline;
}
/* ===========================================================================
  p-icon
============================================================================= */
.p-icon-important,
.p-icon-info,
.p-icon-recruit,
.p-icon-exam,
.p-icon-press {
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	width: 110px;
	box-sizing: border-box;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-icon-important {
	background-color: #df0024;
}
.p-icon-info {
	background-color: #0065dc;
}
.p-icon-recruit {
	background-color: #f5690c;
}
.p-icon-exam {
	background-color: #0abe80;
}
.p-icon-press {
	background-color: #eaa603;
}
/* ===========================================================================
  p-bnrList
============================================================================= */
.p-bnrList {
	width: 94%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
	/*justify-content: space-between;*/
	justify-content: center;
}
.p-bnrList_item {
	width: calc((100% - 6px *5) / 6);
	transition: opacity .2s;
}
.p-bnrList_item:nth-child(n+2) {
	margin-left: 6px;
}
.p-bnrList_item:hover {
	opacity: .8;
}
/* ===========================================================================
  p-heading01
============================================================================= */
.p-heading01 {
	line-height: 1.1;
	margin-bottom: 30px;
}
.p-heading01-news {
	line-height: 1.1;
	margin-bottom: 30px;
}
.p-heading01_text-en {
	font-family: 'Roboto Condensed', sans-serif;
	color: #0065dc;
	font-size: 8.0rem;
	display: block;
}
.p-heading01_text-ja {
	font-size: 1.8rem;
	font-weight: bold;
	display: block;
}
/* ===========================================================================
  p-heading02
============================================================================= */
.p-heading02-exam,
.p-heading02-press {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.p-heading02-exam {
	color: #0abe80;
}
.p-heading02-press {
	color: #eaa603;
}
/* ===========================================================================
  p-bg
============================================================================= */
.p-bg {
	background: url("/img/index_new/bg_01.png") no-repeat right bottom/contain;
}
/* ===========================================================================
  p-content
============================================================================= */
.p-content-bg {
	background-color: rgba(234, 243, 251, .7);
}
.p-content_inner {
	width: calc(100% - 200px);
	margin: 0 auto;
	padding: 90px 0 100px;
}
.p-content_inner-02 {
	width: calc(100% - 200px);
	margin: 0 auto;
	padding: 50px 0 100px;
}
/* ===========================================================================
  p-btn
============================================================================= */
.p-btn-faculty,
.p-btn-m {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: solid 1px #00358d;
	padding: 20px 12px;
	font-family: 'Roboto Condensed', sans-serif;
	transition: all .2s;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
	color: #00358d;
}
.p-btn-faculty:visited,
.p-btn-m:visited {
	color: #00358d;
}
.p-btn-faculty:hover,
.p-btn-m:hover {
	border-color: #0065dc;
	background-color: #0065dc;
	color: #fff;
	text-decoration: none;
}
.p-btn_text {
	display: block;
	width: 100%;
	padding: 0 12px;
	position: relative;
}
.p-btn_text::after {
	display: inline-block;
	width: 18px;
	height: 5px;
	border-bottom: solid 1px #00358d;
	border-right: solid 1px #00358d;
	transform: skew(45deg);
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -3px;
	content: '';
	transition: right .2s;
}
.p-btn-faculty:hover .p-btn_text::after,
.p-btn-m:hover .p-btn_text::after {
	right: 0;
	border-color: #fff;
}
.p-btn-m {
	width: 350px;
	margin-right: auto;
	margin-left: auto;
}
.p-btn-live {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #cd3639;
	padding: 20px 12px;
	font-family: 'Roboto Condensed', sans-serif;
	transition: all .2s;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
	color: #fff;
	width: 215px;
}
.p-btn-live:visited {
	color: #fff;
}
.p-btn-live:hover {
	background-color: #b82326;
	color: #fff;
	text-decoration: none;
}
.p-btn_text-live {
	display: block;
	padding: 0 12px;
	position: relative;
	width: 100%;
}
.p-btn_text-live::after {
	display: inline-block;
	width: 18px;
	height: 5px;
	border-bottom: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: skew(45deg);
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -3px;
	content: '';
	transition: right .2s;
}
.p-btn-live:hover .p-btn_text-live::after {
	right: 0;
}

/* ===========================================================================
  p-news
============================================================================= */
.p-news {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.p-news_item {
	width: 48%;
	position: relative;
}
.p-news_link {
	position: absolute;
	top: 15px;
	right: 0;
	padding-right: 15px;
	color: #0abe80 !important;
}
.p-news_link::after {
	content: '';
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: solid 1px #0abe80;
	border-right: solid 1px #0abe80;
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ===========================================================================
  p-newsTab
============================================================================= */
.p-newsTab {
	display: flex;
	margin-bottom: 20px;
}
.p-newsTab_item-all,
.p-newsTab_item-news,
.p-newsTab_item-recruit {
	box-sizing: border-box;
	width: 85px;
	padding: 6px;
	background-color: #fff;
	border: solid 1px #00358d;
	color: #00358d;
	text-align: center;
	transition: all .2s;
}
.p-newsTab_item-news,
.p-newsTab_item-recruit {
	margin-left: 10px;
}
.p-newsTab_item-all:visited,
.p-newsTab_item-news:visited,
.p-newsTab_item-recruit:visited {
	color: #00358d;
}
.p-newsTab_item-all:hover,
.p-newsTab_item-news:hover,
.p-newsTab_item-recruit:hover {
	cursor: pointer;
}
.p-newsTab_item-all:hover,
.p-newsTab_item-news:hover,
.p-newsTab_item-recruit:hover,
.p-newsTab_item-all.is-active,
.p-newsTab_item-news.is-active,
.p-newsTab_item-recruit.is-active {
	color: #fff;
	text-decoration: none;
}
.p-newsTab_item-all:hover,
.p-newsTab_item-all.is-active {
	background-color: #00358d;
}
.p-newsTab_item-news:hover,
.p-newsTab_item-news.is-active {
	border-color: #0065dc;
	background-color: #0065dc;
}
.p-newsTab_item-recruit:hover,
.p-newsTab_item-recruit.is-active {
	border-color: #f5690c;
	background-color: #f5690c;
}

/* ===========================================================================
  p-newsList01
============================================================================= */
.p-newsList01_item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: dotted 1px #bebebe;
	padding: 10px 0;
	line-height: 1.4;
}
.p-newsList01_date {
	width: 125px;
}
.p-newsList01_title {
	width: 100%;
	margin-top: 8px;
}
/* ===========================================================================
  p-newsList02
============================================================================= */
.p-newsList02 {
	margin-bottom: 20px;
}
.p-newsList02_item {
	background-color: #fff;
	position: relative;
	padding: 40px 20px 15px;
	line-height: 1.4;
}
.p-newsList02_item:nth-child(n + 2) {
	margin-top: 5px;
}
.p-newsList02_date {
	background-color: #0abe80;
	padding: 3px 0;
	color: #fff;
	text-align: center;
	width: 135px;
	position: absolute;
	top: 0;
	left: 0;
}
/* ===========================================================================
  p-newsList03
============================================================================= */
.p-newsList03_item {
	box-sizing: border-box;
	background-color: #fff;
	position: relative;
	padding: 40px 20px 15px;
	line-height: 1.4;
}
.p-newsList03_item:nth-child(n + 2) {
	margin-left: 5px;
}
.p-newsList03_date {
	background-color: #eaa603;
	padding: 3px 0;
	color: #fff;
	text-align: center;
	width: 135px;
	position: absolute;
	top: 0;
	left: 0;
}
/* ===========================================================================
  p-slideNews
============================================================================= */
.p-slideNews {
	position: relative;
}
.p-slideNews_arrow {
	position: absolute;
	top: -30px;
	right: 5px;
}
.p-slideNews_prev,
.p-slideNews_next {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	border: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	outline: 0;
	border-radius: 0;
	text-align: inherit;
	width: 10px;
	height: 10px;
	border-top: solid 1px #f5690c;
	border-right: solid 1px #f5690c;
	content: '';
}
.p-slideNews_prev:hover,
.p-slideNews_next:hover {
	cursor: pointer;
}
.p-slideNews_prev {
	transform: rotate(-135deg);
	right: 20px;
}
.p-slideNews_next {
	transform: rotate(45deg);
}
/* ===========================================================================
  p-live
============================================================================= */
.p-live {
	background: url("/img/index_new/bg_02.jpg") no-repeat center/cover;
}
.p-live_inner {
	width: 94%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 80px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.p-live_head {
	box-sizing: border-box;
	width: 310px;
	min-height: 310px;
	background-color: #1b2949;
	color: #fff;
	padding: 30px 40px;
	position: relative;
}
.p-live_head::before {
	content: '';
	width: 20px;
	height: 20px;
	background-color: #cd3639;
	position: absolute;
	top: 0;
	left: 0;
}
.p-live_title {
	line-height: 1.2;
	margin-bottom: 30px;
}
.p-live_title-en {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 6.0rem;
}
.p-live_title-ja {
	display: block;
}
.p-live_btn {
	position: absolute;
	right: -20px;
	bottom: -20px;
}
.p-live_link {
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.6rem;
	transition: all .2s;
	position: relative;
	padding-right: 30px;
	display: inline-block;
}
.p-live_link:hover {
	color: #fff;
	text-decoration: none;
}
.p-live_link:visited {
	color: #fff;
}
.p-live_link::after {
	display: inline-block;
	width: 18px;
	height: 5px;
	border-bottom: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: skew(45deg);
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -3px;
	content: '';
	transition: right .2s;
}
.p-live_link:hover::after {
	right: 0;
}
.p-live_wrap {
	width: calc(100% - 410px);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.p-live_article {
	width: 46%;
}
.p-live_article:nth-child(even) {
	margin-left: 7.99%;
}
.p-live_article:nth-child(2) {
	margin-top: 60px;
}
.p-live_article:not(:first-child):nth-child(odd) {
	margin-top: 50px;
}
.p-live_article:not(:nth-child(2)):nth-child(even) {
	margin-top: 100px;
}
/* ===========================================================================
  p-liveArticle
============================================================================= */
.p-liveArticle {
	background-color: #fff;
	box-shadow: 0px 0px 10px 5px rgba(27, 41, 73, 0.1);
	color: #000;
	position: relative;
	transition: box-shadow .2s;
}
.p-liveArticle:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0px 0px 10px 5px rgba(27, 41, 73, 0.2);
}
.p-liveArticle:visited {
	color: #000;
}
.p-liveArticle_new {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
.p-liveArticle_img {
	overflow: hidden;
}
.p-liveArticle_img > img {
	transition: transform .2s;
}
.p-liveArticle:hover .p-liveArticle_img > img {
	transform: scale(1.1);
}
.p-liveArticle_textArea {
	padding: 15px 20px;
	position: relative;
}
.p-liveArticle_date {
	color: #7a7a7a;
	font-size: 1.2rem;
	display: block;
}
.p-liveArticle_title {
	display: block;
	font-weight: bold;
	margin-top: 5px;
	line-height: 1.68;
}
.p-liveArticle_category-pursuit,
.p-liveArticle_category-throb,
.p-liveArticle_category-growth,
.p-liveArticle_category-interaction,
.p-liveArticle_category-scenery,
.p-liveArticle_category-announcement {
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 20px;
	top: -24px;
}
.p-liveArticle_category-pursuit {
	background-color: #8edcde;
}
.p-liveArticle_category-throb {
	background-color: #ed6f87;
}
.p-liveArticle_category-growth {
	background-color: #6dce8d;
}
.p-liveArticle_category-interaction {
	background-color: #7867b9;
}
.p-liveArticle_category-scenery {
	background-color: #a8aaaa;
}
.p-liveArticle_category-announcement {
	background-color: #c7c14c;
}
/* ===========================================================================
  p-head
============================================================================= */
.p-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.p-head_title {
	width: 265px;
}
.p-head_text {
	margin-top: -30px;
	width: calc(100% - 265px);
}
/* ===========================================================================
  p-facultyList
============================================================================= */
.p-facultyList {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}
/* ===========================================================================
  p-faculty
============================================================================= */
.p-faculty-literature {
	background-color: #deb800;
}
.p-faculty-education {
	background-color: #f3dd42;
}
.p-faculty-human {
	background-color: #a791af;
}
.p-faculty-psychology {
	background-color: #a2ca0e;
}
.p-faculty-creation {
	background-color: #5ab6d3;
}
.p-faculty-architecture {
	background-color: #5fbcf6;
}
.p-faculty-health {
	background-color: #ed7859;
}
.p-faculty-nutrition {
	background-color: #009780;
}
.p-faculty-welfare {
	background-color: #e9999e;
}
.p-faculty-communication {
	background-color: #f5a933;
}
.p-faculty-business {
	background-color: #87b2d8;
}
.p-faculty-global {
	background-color: #70bfc4;
}
.p-faculty-literature:hover,
.p-faculty-education:hover,
.p-faculty-human:hover,
.p-faculty-psychology:hover,
.p-faculty-creation:hover,
.p-faculty-architecture:hover,
.p-faculty-health:hover,
.p-faculty-nutrition:hover,
.p-faculty-welfare:hover,
.p-faculty-communication:hover,
.p-faculty-business:hover,
.p-faculty-global:hover {
	text-decoration: none;
}
.p-faculty_img {
	overflow: hidden;
}
.p-faculty_img > img {
	transition: transform .2s;
}
.p-faculty-literature:hover .p-faculty_img > img,
.p-faculty-education:hover .p-faculty_img > img,
.p-faculty-human:hover .p-faculty_img > img,
.p-faculty-psychology:hover .p-faculty_img > img,
.p-faculty-creation:hover .p-faculty_img > img,
.p-faculty-architecture:hover .p-faculty_img > img,
.p-faculty-health:hover .p-faculty_img > img,
.p-faculty-nutrition:hover .p-faculty_img > img,
.p-faculty-welfare:hover .p-faculty_img > img,
.p-faculty-communication:hover .p-faculty_img > img,
.p-faculty-business:hover .p-faculty_img > img,
.p-faculty-global:hover .p-faculty_img > img {
	transform: scale(1.1);
}
.p-faculty_text {
	color: #fff;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-faculty_text-s {
	font-weight: normal;
	font-size: 1.0rem;
}
/* ===========================================================================
  p-linkList
============================================================================= */
.p-linkList {
	padding: 80px 0 100px;
	width: 94%;
	max-width: 1170px;
	margin: 0 auto;
}
.p-linkList_lead {
	font-size: 3.6rem;
	text-align: center;
	color: #0065dc;
	letter-spacing: .2em;
	margin-bottom: 30px;
}
.p-linkList_wrap {
	display: flex;
	justify-content: space-between;
}
.p-linkList_wrap-center {
	display: flex;
	justify-content: center;
}
.p-linkList_wrap + .p-linkList_wrap-center {
	margin-top: 30px;
}
.p-linkList_item,
.p-linkList_item-movie,
.p-linkList_item-col3 {
	box-sizing: border-box;
	border-bottom: 2px solid #00358d;
	box-shadow: 0px 0px 5px 0px rgba(27, 41, 73, 0.1);
	position: relative;
}
.p-linkList_item-col3:nth-child(2) {
	margin-left: 6px;
}
.p-linkList_item::after,
.p-linkList_item-movie::after,
.p-linkList_item-col3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #0065dc;
	transition: width .4s;
}
.p-linkList_item:hover,
.p-linkList_item-movie:hover,
.p-linkList_item-col3:hover {
	color: #0065dc;
	text-decoration: none;	
	border-color:  #fff;
}
.p-linkList_item:hover::after,
.p-linkList_item-movie:hover::after,
.p-linkList_item-col3:hover::after {
	width: 100%;
}
.p-linkList_item,
.p-linkList_item-movie {
	width: calc((100% - 6px * 5) / 6);
	text-align: center;
}
.p-linkList_item-col3 {
	width: calc((100% - 6px * 3) / 3);
	display: flex;
	align-items: center;
}
.p-linkList_item,
.p-linkList_item-col3 {
	background-color: #fff;
}
.p-linkList_item {
	padding-bottom: 18px;
}
.p-linkList_item-col3 {
	padding: 10px;
}
.p-linkList_img-col3 {
	width: 38%;
	margin-right: 30px;
}
.p-linkList_text,
.p-linkList_text-movie {
	font-size: 1.5rem;
	line-height: 1.2;
}
.p-linkList_item-movie {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("/img/index_new/link_movie.jpg") no-repeat left bottom/cover;
}
.p-linkList_text-movie {
	position: relative;
	width: 90%;
}
.p-linkList_text-movie::after {
	display: inline-block;
	width: 18px;
	height: 5px;
	border-bottom: solid 1px #00358d;
	border-right: solid 1px #00358d;
	transform: skew(45deg);
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -3px;
	content: '';
	transition: right .2s;
}
.p-linkList_item-movie:hover .p-linkList_text-movie::after {
	right: 0;
}
.p-linkList_img {
	margin-bottom: 18px;
}
@media screen and (min-width:768px) {	
	/* ===========================================================================
	  p-facultyLink
	============================================================================= */
	.p-facultyLink_body {
		display: block !important;
	}
}
@media screen and (max-width:1440px) {
	/* ===========================================================================
	  p-content
	============================================================================= */
	.p-content_inner,
	.p-content_inner-02 {
		width: 94%;
		max-width: 1170px;
	}
}
@media screen and (max-width:1024px) {
	/* ===========================================================================
	  br
	============================================================================= */
	.br-l {
		display: none;
	}
	.br-m {
		display: inline;
	}
	/* ===========================================================================
	  p-mainVisual
	============================================================================= */
	.p-mainVisual {
		height: auto;
		background-image: none;
	}
	.p-mainVisual_inner {
		width: 100%;
	}
	.p-mainVisual_box {
		display: block;
		padding-top: 120px;
		height: auto;
	}
	.p-mainVisual_main {
		width: 100%;
		height: 450px;
		background: url("../img/index_new/mv_bg_240508.jpg") no-repeat center / cover;
	}
	.p-mainVisual_slide {
		width: 75%;
		margin: 0 auto;
	}
	.p-mainVisual_text {
		top: 320px;
		margin-top: 0;
	}
	.p-mainVisual_side {
		width: 100%;
		height: auto;
		position: static;
		background-color: #e1edf9;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
		animation: none;
	}
	.p-mainVisual_bnrList,
	.p-mainVisual_navi {
		width: 48%;
	}
	.p-mainVisual_bnr-system {
		width: 100%;
		margin-top: 20px;
	}
	/* ===========================================================================
	  p-navi
	============================================================================= */
	.p-navi {
		margin-top: 0;
	}
	/* ===========================================================================
	  p-facultyLink
	============================================================================= */
	.p-facultyLink_body {
		width: 100%;
	}
	.p-facultyLink_link {
		padding: 15px 5px;
		font-size: 1.2rem;
		width: calc(100% - 10px);
	}
	/* ===========================================================================
	  p-bg
	============================================================================= */
	.p-bg {
		background-position:  right bottom;
		background-size: 100%;
	}
	/* ===========================================================================
	  p-content
	============================================================================= */
	.p-content_inner,
	.p-content_inner-02 {
		padding-top: 40px;
	}
	/* ===========================================================================
	  p-btn
	============================================================================= */
	.p-btn-faculty,
	.p-btn-live {
		width: 350px;
	}
	/* ===========================================================================
	  p-importantNews
	============================================================================= */
	.p-importantNews {
		display: block;
		border-top: solid 2px #0065dc;
		border-bottom-width: 2px;
		padding: 20px 0;
	}
	.p-importantNews_list {
		margin: 0 auto;
	}
	.p-importantNews_item {
		display: flex;
		flex-wrap: wrap;
	}
	.p-importantNews_item:nth-child(n + 2) {
		margin-top: 10px;
	}
	.p-importantNews_link {
		width: 100%;
		margin-top: 5px;
		margin-left: 0;
	}
	/* ===========================================================================
	  p-live
	============================================================================= */
	.p-live_inner {
		width: 100%;
		padding-top: 0;
		display: block;
	}
	.p-live_head {
		width: 100%;
		min-height: auto;
		padding: 30px;
		display: flex;
	}
	.p-live_title {
		width: 280px;
	}
	.p-live_text {
		width: calc(100% - 280px);
	}
	.p-live_wrap {
		width: 94%;
		margin: 40px auto 0;
	}
	.p-live_btn {
		position: static;
		margin-top: 10px;
	}
	/* ===========================================================================
	  p-facultyList
	============================================================================= */
	.p-facultyList {
		grid-template-columns: repeat(3, 1fr);
	}
	/* ===========================================================================
	  p-faculty
	============================================================================= */
	.p-faculty-literature:hover .p-faculty_img > img,
	.p-faculty-human:hover .p-faculty_img > img,
	.p-faculty-psychology:hover .p-faculty_img > img,
	.p-faculty-creation:hover .p-faculty_img > img,
	.p-faculty-health:hover .p-faculty_img > img,
	.p-faculty-welfare:hover .p-faculty_img > img,
	.p-faculty-communication:hover .p-faculty_img > img,
	.p-faculty-business:hover .p-faculty_img > img,
	.p-faculty-global:hover .p-faculty_img > img {
		transform: scale(1);
	}
	/* ===========================================================================
	  p-linkList
	============================================================================= */
	.p-linkList {
		padding: 50px 0;
	}
	.p-linkList_text,
	.p-linkList_text-movie {
		font-size: 1.3rem;
	}
	.p-linkList_text-movie::after {
		content: none;
	}
}

@media screen and (max-width:767px) {
	#contents {
		padding: 0;
	}
	/* ===========================================================================
	  br
	============================================================================= */
	.br-m {
		display: none;
	}
	.br-s {
		display: inline;
	}
	/* ===========================================================================
	  p-mainVisual
	============================================================================= */
	.p-mainVisual_box {
		padding-top: 0;
	}
	.p-mainVisual_text {
		top: 16%;
		font-size: 1.6rem;
	}
	.p-mainVisual_main {
		width: 100%;
		height: auto;
	}
	.p-mainVisual_slide {
		width: 100%;
	}
	.p-mainVisual_side {
		display: block;
	}
	.p-mainVisual_bnrList,
	.p-mainVisual_navi {
		width: 100%;
	}
	.p-mainVisual_slide {
		padding: 0;
		margin: 0 !important;
	}
	.slick-dots {
		bottom: 10px;
	}
	.slick-dots li button:before {
		color: #fff;
	}
	/* ===========================================================================
	  p-navi
	============================================================================= */
	.p-navi {
		margin-top: 10px;
	}
	/* ===========================================================================
	  p-facultyLink
	============================================================================= */
	.p-facultyLink {
		background-color: #fff;
	}
	.p-facultyLink_head {
		display: block;
		background-color: #1b2949;
		color: #fff;
		padding: 10px;
		text-align: center;
		position: relative;
	}
	.p-facultyLink_head::after {
		display: inline-block;
		position: absolute;
		top: 15px;
		right: 15px;
		width: 7px;
		height: 7px;
		transform: rotate(135deg);
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		content: '';
		transition: all .2s;
	}
	.p-facultyLink_head.is-open::after {
		top: 20px;
		transform: rotate(-45deg);
	}
	.p-facultyLink_body {
		display: none;
		border-left: none;
	}
	.p-facultyLink_item {
		border-right: none;
		background-color: #fff;
		flex-basis: calc(100%/2);
	}
	.p-facultyLink_item:nth-child(even) {
		border-left: solid 1px #ccc;
	}
	.p-facultyLink_link {
		color: #000;
		font-size: 1.1rem;
		min-height: 30px;
	}
	.p-facultyLink_link:visited {
		color: #000;
	}
	/* ===========================================================================
	  p-newsHeading
	============================================================================= */
	.p-newsHeading {
		display: block;
		padding-bottom: 20px;
	}
	.p-newsHeading_title {
		width: auto;
	}
	.p-newsHeading_news {
		width: auto;
		margin-top: 10px;
	}
	/* ===========================================================================
	  p-bnrList
	============================================================================= */
	.p-bnrList {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.p-bnrList_item {
		width: calc((100% - 6px) / 2);
	}
	.p-bnrList_item:nth-child(n+2) {
		margin-left: 0;
	}
	.p-bnrList_item:nth-child(even) {
		margin-left: 5.99px;
	}
	.p-bnrList_item:nth-child(n + 3) {
		margin-top: 6px;
	}
	/* ===========================================================================
	  p-heading01
	============================================================================= */
	.p-heading01 {
		margin-bottom: 15px;
	}
	.p-heading01-news {
		margin-bottom: 15px;
	}
	.p-heading01_text-en {
		font-size: 6.0rem;
		display: block;
	}
	/* ===========================================================================
	  p-heading02
	============================================================================= */
	.p-heading02-exam,
	.p-heading02-press {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	/* ===========================================================================
	  p-content
	============================================================================= */
	.p-content_inner,
	.p-content_inner-02 {
		padding: 20px 0 40px;
	}
	/* ===========================================================================
	  p-btn
	============================================================================= */
	.p-btn-faculty,
	.p-btn-m,
	.p-btn-live {
		max-width: none;
		width: 100%;
		font-size: 1.4rem;
	}
	/* ===========================================================================
	  p-news
	============================================================================= */
	.p-news {
		display: block;
		margin-bottom: 30px;
	}
	.p-news_item {
		width: 100%;
	}
	.p-news_item:nth-child(2) {
		margin-top: 20px;
	}
	/* ===========================================================================
	  p-newsList02
	============================================================================= */
	.p-newsList02_item {
		padding: 40px 15px 15px;
	}
	/* ===========================================================================
	  p-newsList03
	============================================================================= */
	.p-newsList03_item {
		padding: 40px 15px 15px;
	}
	.p-newsList03_item:nth-child(n + 2) {
		margin-left: 5px;
	}
	/* ===========================================================================
	  p-live
	============================================================================= */
	.p-live_inner {
		padding-bottom: 30px;
	}
	.p-live_head {
		width: 100%;
		min-height: auto;
		padding: 40px 15px 25px;
		display: block;
	}
	.p-live_title {
		width: auto;
		margin-bottom: 10px;
	}
	.p-live_title-en {
		font-size: 4.0rem;
	}
	.p-live_text {
		width: 100%;
	}
	.p-live_wrap {
		margin-top: 20px;
	}
	.p-live_article {
		width: 100%;
	}
	.p-live_article:nth-child(even) {
		margin-left: 0;
	}
	.p-live_article:nth-child(2) {
		margin-top: 20px;
	}
	.p-live_article:not(:first-child):nth-child(odd) {
		margin-top: 20px;
	}
	.p-live_article:not(:nth-child(2)):nth-child(even) {
		margin-top: 20px;
	}
	/* ===========================================================================
	  p-liveArticle
	============================================================================= */
	.p-liveArticle {
		display: flex;
	}
	.p-liveArticle:nth-child(even) {
		flex-direction: row-reverse;
	}
	.p-liveArticle_new {
		width: 40px;
		height: 40px;
	}
	.p-liveArticle_img {
		width: 50%;
	}
	.p-liveArticle_img > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.p-liveArticle_textArea {
		box-sizing: border-box;
		width: 50%;
		padding: 10px 15px 15px;
	}
	.p-liveArticle_date {
		font-size: 1.0rem;
	}
	.p-liveArticle_title {
		font-size: 1.2rem;
	}
	.p-liveArticle_category-pursuit,
	.p-liveArticle_category-throb,
	.p-liveArticle_category-growth,
	.p-liveArticle_category-interaction,
	.p-liveArticle_category-scenery,
	.p-liveArticle_category-announcement {
		width: 30px;
		height: 30px;
		font-size: 1.0rem;
		right: 0;
		top: 0;
	}
	/* ===========================================================================
	  p-head
	============================================================================= */
	.p-head {
		display: block;
	}
	.p-head_title {
		width: auto;
	}
	.p-head_text {
		margin: 0 0 20px;
		width: auto;
	}
	/* ===========================================================================
	  p-facultyList
	============================================================================= */
	.p-facultyList {
		grid-template-columns: repeat(2, 1fr);
	}
	/* ===========================================================================
	  p-faculty_text
	============================================================================= */
	.p-faculty_text {
		font-size: 1.2rem;
		line-height: 1.2;
		height: 40px;
	}
	/* ===========================================================================
	  p-linkList
	============================================================================= */
	.p-linkList_lead {
		font-size: 2.4rem;
		letter-spacing: .2em;
		margin-bottom: 20px;
	}
	.p-linkList_wrap,
	.p-linkList_wrap-center {
		flex-wrap: wrap;
	}
	
	.p-linkList_wrap + .p-linkList_wrap-center {
		margin-top: 10px;
	}
	.p-linkList_item,
	.p-linkList_item-movie {
		width: calc((100% - 6px) / 2);
		text-align: center;
	}
	.p-linkList_item-col3 {
		width: 100%;
	}
	.p-linkList_item-col3:nth-child(2) {
		margin-left: 0;
	}
	.p-linkList_item:nth-child(n + 3),
	.p-linkList_item-col3:nth-child(n + 2) {
		margin-top: 10px;
	}
	.p-linkList_item {
		padding-bottom: 10px;
	}
	.p-linkList_img {
		margin-bottom: 10px;
	}
}