@charset "utf-8";
/* -------------------------------------------------------
ヘッダー
------------------------------------------------------- */
header {
	background: #FFF4E4;
	position: fixed;
	padding: 20px 0 19px 19px;
	width: 100%;
	z-index: 99;
}
.header_contents {
	position: absolute;
	right: 0;
	top: 0;
}
.logo img {
	width: 113px;
	height: 30px;
}
/* @media only screen and (min-width: ) {
	.logo img {
		width: 60px;
		height: 70px;
	}
} */
@media only screen and (min-width: 1025px) {
	header {
		padding: 43px 40px 43px 40px;
	}
	.logo img {
		width: 200px;
		height: 54px;
	}	
}
@media only screen and (min-width: 1400px) {
}
@media only print {
	.logo img {
		width: 275px;
		height: 73px;
	}	
}
.nav_btn_wrap {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 102;
}
/* -------------------------------------------------------
ハンバーガー
------------------------------------------------------- */
.hamburger {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 99;
	width: 50px;
	height: 50px;
	padding: 0;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
	background: #fff;
	border-radius: 50%;
	-webkit-transition: all .5s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all .5s cubic-bezier(0.39, 0.575, 0.565, 1);
	cursor: pointer;
}
.hamburger_bar {
	position: absolute;
	top: 24px;
	display: inline-block;
	width: 20px;
	height: 2px;
	border-radius: 20px;
	background: #333;
}
.hamburger_bar:after, .hamburger_bar:before {
	position: absolute;
	display: inline-block;
	content: ' ';
	width: 100%;
	height: 2px;
	background: #333;
}
.hamburger_bar:after {
	top: -6px;
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_bar:before {
	bottom: -6px;
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_bar.animate {
	background: rgba(0, 0, 0, 0);
}
.hamburger_bar.animate:after {
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	background: #333;
}
.hamburger_bar.animate:before {
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
	background: #333;
}
@media print {
	.hamburger {
		display: none;
	}
}
.nav_btn_txt {
	position: absolute;
	bottom: 12px;
	width: 100%;
	text-align: center;
	line-height: 1;
}
.nav_btn_txt span {
	display: inline-block;
	/* transform: scale( .8);
	transform-origin: 18px 22px 0; */
	font-size: 10px;
	font-family: 'Alegreya Sans', sans-serif;
	color: #333;
}
.nav_btn_txt span.nav_btn_txt_on {
	color: #333;
}
/*
ドロワーメニュー開閉
*/
.drawer_nav {
	position: fixed;
	top: 0;
	right: -375px;
	z-index: 101;
	width: 375px;
	height: 100%;
	padding: 100px 37px 0;
	background: url(../images/common/bg.webp);
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
	@media screen and (max-width: 375px), print and (max-width: 375px) {
		.drawer_nav {
			width: 100%;
		}	
	}
.drawer_nav.open_drawer {
	-webkit-transform: translate3d(-375px, 0, 0);
	-moz-transform: translate3d(-375px, 0, 0);
	transform: translate3d(-375px, 0, 0);
}
.drawer_overay {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #000;
}
.drawer_overay.open_drawer {
	display: block;
}
/*
ドロワーメニューデザイン
*/
.gnav {
	display: flex;
	justify-content: flex-end;
}
.gnav > ul {
	display: flex;
	align-items: center;
	margin: 9.5px 9.3px 9.5px 0;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
}
.gnav > ul > li {
	width: max-content;
	transition: all 0.5s ease-out;
	cursor: pointer;
}
.gnav > ul > li:first-child,
.gnav > ul > li:nth-child(2),
.gnav > ul > li:nth-child(3),
.gnav > ul > li:nth-child(4) {
	display: none;
}
.gnav > ul > li.nav_btn {
	background: #34763B;
	border-radius: 40px;
}
.gnav > ul > li > a {
	position: relative;
	display: block;
	text-align: center;
	padding: 20px 0;
	line-height: 1.5;
	transition: all .3s ease-out;
}
.gnav > ul > li.nav_btn > a {
	padding: 16px 20px;
}
.gnav > ul > li > a svg {
	transition: all .3s ease-out;
}
.drawer_nav > ul > li + li {
	margin: 30px 0 0;
}
.drawer_nav > ul > li.univ_official {
	margin-top: 60px;
	gap: 60px;
}
.drawer_nav > ul > li:not(.univ_official) > a {
	line-height: 1;
}
.nav_txt {
	font-size: 12px;
	color: #222;
}
.nav_btn .nav_txt {
	color: #fff;
}
.nav_btn .nav_txt svg {
	fill: #fff;
}
@media screen and (max-width: 350px), print and (max-width: 350px) {
	.nav_txt {
		font-size: 16px;
	}
}
.drawer_nav li:not(.univ_official) a::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url(../images/common/sp_menu_arw.svg) left center no-repeat;
}
.univ_official {
	display: flex;
	align-items: center;
	gap: 1em;
	flex-direction: column;
}
.univ_official .nav_txt {
	display: flex;
	align-items: flex-start;
}
.univ_official::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #222222;
}
.univ_mark {
	width: 1.3em;
	height: 1.5em;
	display: flex;
	align-items: center;
	margin: 0 10px 0 0;
}
.nav_txt .external {
	fill: #333;
	padding: 0 0 0 5px;
}
.nav_txt .external svg {
	width: 15px;
}
@media screen and (min-width: 768px) {
	.nav_txt {
		font-size: clamp(12px,1.5vw,18px);
	}
}
@media screen and (min-width: 1025px), print and (max-width: 1025px) {
	.gnav > ul {
		gap: 40px;
		margin: 30px 40px 30px 0;
		padding: 0 0 0 45px;
	}
	.gnav > ul > li > a {
		padding: 27px 0;
	}
	.gnav > ul > li:first-child,
	.gnav > ul > li:nth-child(2),
	.gnav > ul > li:nth-child(3),
	.gnav > ul > li:nth-child(4) {
		display: block;
	}
	.gnav > ul > li.nav_btn > a {
		padding: 27px 45px;
	}
	.univ_official {
    flex-direction: row;
	}
	.univ_official::before {
		width: 1px;
		height: 1.7em;
		max-height: 30px;
	}
	.nav_txt .external {
		fill: #333;
		padding: 0 0 0 5px;
	}
	.gnav > ul > li:hover a {
		color: #34763B;
		transition: all .3s ease-out;
	}
	.gnav > ul > li.nav_btn:hover {
		background: #FFBE00;
	}
	.nav_btn:hover .nav_txt {
		color: #312C20;
	}
	.nav_btn:hover .nav_txt svg {
		fill: #312C20;
	}
	.gnav > ul > li > a:hover .external {
		fill: #34763B;
		transition: all .3s ease-out;
	}
	.nav_btn_wrap {
		display: none;
	}
}

@media screen and (min-width: 1400px), print and (max-width: 1400px) {
	.nav_txt {
		font-size: 18px;
	}
	.univ_official {
		gap: 2.2em;
	}
}
.main_contents {
	padding: 74px 0 0 ;
}
@media screen and (min-width: 768px), print and (max-width: 768px) {
	.main_contents {
	}
}
@media screen and (min-width: 1025px) {
	.main_contents {
		padding: 140px 0 0;
	}
}
/* -------------------------------------------------------
レイアウト
------------------------------------------------------- */
.page_body_01 {
	width: 100%;
	padding: 0 20px;
}
@media only screen and (min-width: 1541px) {
	.page_body_01 {
		width: 1500px;
		margin: auto;
		padding: 0;
	}
}
.page_body_02 {
	width: 100%;
	padding: 0 20px;
}
@media only screen and (min-width: 1041px) {
	.page_body_02 {
		width: 1000px;
		margin: auto;
		padding: 0;
	}
}
.bg_border_01 {
	background: url(../images/common/bg_border.webp);
}

/* 下層wrap */
.sub_page_wrap {
	padding: 80px 0 100px;
	position: relative;
}
@media screen and (min-width:768px) {
	.sub_page_wrap {
		padding: 130px 0 120px;
	}
}
@media screen and (min-width:1024px) {
	.sub_page_wrap {
		padding: 230px 0 150px;
	}
}

/* -------------------------------------------------------
footer
------------------------------------------------------- */
footer {
	background: #fff;
	padding: 30px 0 39px;
}
.footer_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 30px 0;
}
.footer_item_left {
	display: flex;
	flex-direction: column;
	gap: 13px;
	align-items: center;
}
.footer_logo {
	width: 154px;
	height: 41px;
}
.footer_contact_ttl {
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	color: #1A1311;
}
.footer_txt {
	display: flex;
	gap: 0 16px;
	color: #1A1311;
}
.footer_contact {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}
.footer_contact_place {
	font-weight: bold;
}
.footer_tel {
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 1.5px;
}
.footer_address {
	font-size: 10px;
	font-weight: normal;
	line-height: 1.4;
}
.footer_item_right p + p {
	margin: 6px 0 0;
}
.footer_policy {
	font-size: 13px;
	text-align: center;
	font-weight: normal;
}
.footer_policy a {
	color: #1A1311;
}
@media screen and (min-width: 768px) {
	footer {
		padding: 36px 0;
	}
	.footer_item_left {
		flex-direction: row;
		gap: 52px;
	}
	.footer_logo {
		width: 180px;
		height: 47px;
	}
	.footer_contact_ttl {
		font-size: clamp(11px, 1.25vw, 16px);
	}
	.footer_txt {
		gap: 0 24px;
	}
	.footer_contact {
		font-size: clamp(11px, 1.25vw, 16px);
	}
	.footer_tel {
		font-size: clamp(10px, 1.25vw, 16px);
	}
	.footer_address {
		font-size: clamp(10px, 1.17vw, 15px);
	}
	.footer_item_right p + p {
		margin: 24px 0 0;
	}
	.footer_policy {
		font-size: clamp(13px, 1.17vw, 15px);
		transition: all .3s ease-out;
		text-align: left;
	}
	.footer_policy a:hover {
		color: #5E6E74;
    transition: all .3s ease-out;
	}
}
@media screen and (min-width: 900px) {
	.footer_item {
		flex-direction: row;
	}
}
@media screen and (min-width: 1024px) {
	.footer_item_left {
		flex-direction: row;
		gap: 52px;
	}
	.footer_txt {
		gap: 0 24px;
	}
}
@media screen and (min-width: 1280px) {
	.footer_contact_ttl {
		font-size: 16px;
	}
	.footer_contact {
		font-size: 16px;
	}
	.footer_tel {
		font-size: 16px;
	}
	.footer_address {
		font-size: 15px;
	}
	.footer_policy {
		font-size: 15px;
	}
}
@media print {
	.footer_logo {
		width: 275px;
		height: 73px;
	}
}
/* -------------------------------------------------------
page_top
------------------------------------------------------- */
.page_top {
	position: fixed;
	right: 2%;
	bottom: 60px;
	z-index: 100;
}
.page_top a {
	width: 50px;
	height: 50px;
	display: block;
	background: url(../images/common/page_top.svg) no-repeat;
	-webkit-background-size: 50px;
	background-size: 50px;
}
@media only screen and (min-width: 768px) {
	.page_top a {
		width: 80px;
		height: 80px;
		-webkit-background-size: 80px;
		background-size: 80px;
	}
}

/* -------------------------------------------------------
共通タイトル
------------------------------------------------------- */
/* 下層ページ画像タイトル */
.sub_page_ttl {
	text-align: center;
}
.sub_ttl_txt {
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	margin: 10px 0 0;
}
/* 学部学科タイトル */
.faculty_ttl {
	color: #fff;
	/* font-family: 'akari'; */
	font-size: 24px;
	line-height: 1.2;
	background: #000;
	border: #6D242E 1px solid;
	box-shadow: 0px 6px 0px 0px #6D242E;
	border-radius: 18px;
	overflow: hidden;
	margin: 0 0 27px;
}
.ttl_inner {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 3px 12px;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0.15) 15px, rgba(255, 255, 255, 0.15) 15px 30px);
}
.ttl_inner::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 20px;
	flex-shrink: 0;
}
/* 下層ページタイトル アンダーライン */
.sec_ttl_under_line {
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 6px;
  display: inline;
  background:linear-gradient(transparent 80%, #FEDD78 0%)
}
/* データサイエンス学環 */
.faculty_01 .faculty_ttl {
	background: #409AD6;
}
/* 理工学部 */
.faculty_02 .faculty_ttl {
	background: #27ADC1;
}
/* 人文学部 */
.faculty_03 .faculty_ttl {
	background: #EE7700;
}
/* 経済学部 */
.faculty_04 .faculty_ttl {
	background: #956134;
}
/* 情報学部 */
.faculty_05 .faculty_ttl {
	background: #58B530;
}
/* 教育学部 */
.faculty_06 .faculty_ttl {
	background: #8A5659;
}
/* 経営学部 */
.faculty_07 .faculty_ttl {
	background: #0BA29A;
}
/* デザイン学部 */
.faculty_08 .faculty_ttl {
	background: #4E7DBF;
}
/* 心理学部 */
.faculty_09 .faculty_ttl {
	background: #EC6D4F;
}
/* 建築学部 */
.faculty_10 .faculty_ttl {
	background: #A35797;
}
@media only screen and (min-width: 768px) {
	.faculty_ttl {
		font-size: clamp(24px,2.7vw,35px);
		border: #6D242E 2px solid;
		margin: 0 0 40px;
		border-radius: 30px;
	}
	.sub_ttl_txt {
		font-size: 20px;
		margin: 20px 0 0;
	}
	.sub_ttl_txt br {
		display: none;
	}
	.ttl_inner {
		gap: 10px;
		padding: 5px 18px;
		background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0.15) 20px, rgba(255, 255, 255, 0.15) 20px 40px);
	}
	.ttl_inner::before {
		width: 27px;
		height: 27px;
		border-radius: 15px;
	}
	.sec_ttl_under_line {
		font-size: clamp(24px, 3.12vw, 40px);
		padding-bottom: 9px;
	}
	.sec_ttl_under_line br {
		display: none;
	}
}
@media only screen and (min-width: 1280px) {
	.faculty_ttl {
		font-size: 35px;
	}
	.sec_ttl_under_line {
		font-size: 40px;
		padding-bottom: 9px;
    background: linear-gradient(transparent 84%, #FEDD78 0%);
	}
}
/* -------------------------------------------------------
共通ボタン
------------------------------------------------------- */
.admission_link_txt_wrap {
	position: relative;
}
.admission_link_txt {
	position: relative;
	z-index: 1;
	display: flex;
	padding: 13px 14px;
	border: solid #6D242E 3px;
	background: url(../images/common/arrow_01.svg) 250px center/9.98px 21.26px no-repeat;
	border-radius: 15px;
	font-size: 16px;
	color: #fff;
	line-height: 1;
	transition: all .2s ease-out;
	width: 100%;
}
.admission_link_txt_wrap span {
	display: block;
	content: '';
	position: absolute;
	bottom: -4px;
	left: 4px;
	z-index: 0;
	border-radius: 15px;
	background: #6D242E;
	width: 100%;
	height: 100%;
}
.admission_link_txt:hover {
	transform: translate(4px, 4px);
	transition: all .2s ease-out;
}
.ttl_common_btn_wrap {
	width: 100%;
	margin: 20px 0 0;
	text-align: center;
}
.ttl_common_btn_wrap .admission_link_txt_wrap {
	display: inline-block;
	width: 300px;
}
.ttl_common_btn .admission_link_txt {
	background: url(../images/common/arrow_02.svg) 250px center/9.98px 21.26px no-repeat;
	background-color: #F8B862;
	background-position-x: 95%;
	color: #6D242E;
	line-height: 1.5;
}
@media screen and (min-width: 768px) {
	.ttl_common_btn .admission_link_txt br {
		display: none;
	}
	.ttl_common_btn .admission_link_txt {
		font-size: 20px;
	}
	.ttl_common_btn_wrap {
		margin: 35px 0 0;
	}
	.ttl_common_btn_wrap .admission_link_txt_wrap {
		width: 570px;
	}
}
@media screen and (min-width: 1280px) {
	.admission_link_txt {
		padding: 11px 14px;
		font-size: 18px;
	}
	.ttl_common_btn_wrap {
		margin: 50px 0 0;
	}
}

/* 下層ページ角丸コンテンツ */
.sub_pg_con {
	background: #fff;
	border-radius: 10px;
	padding: 30px 20px;
}
.sub_pg_con + .sub_pg_con {
	margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
	.sub_pg_con {
		border-radius: 25px;
		padding: 50px 70px 60px 70px;
	}
	.sub_pg_con + .sub_pg_con {
		margin: 60px 0 0;
	}
}

/* -------------------------------------------------------
バナーエリア
------------------------------------------------------- */
.bnr_wrap {
	padding: 100px 0;
}
.bnr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.bnr_item img {
	outline: 1px solid #6D242E;
	border-radius: 10px;
}
.bnr_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 336px;
}
.bnr_txt {
	width: 100%;
	margin: 8px 0 0;
	text-align: center;
	position: relative;
	font-size: 16px;
}
.bnr_item .bnr_arw {
	outline: none;
	width: 20px;
	position: absolute;
	top: 0;
	right: 10px;
}

@media screen and (min-width: 768px) {
	.bnr_wrap {
		padding: 200px 0;
	}
	.bnr_list {
		gap: 50px 30px;
	}
	.bnr_txt {
		font-size: clamp(16px, 1.87vw, 24px);
		padding: 0 60px;
	}
	.bnr_item img {
		outline: 3px solid #6D242E;
		width: 100%;
		transition: all .3s;
	}
	.bnr_item img:hover {
		opacity: .8;
	}
	.bnr_item:hover {
		cursor: pointer;
	}
	.bnr_item .bnr_arw {
		opacity: unset;
	}
	.bnr_item:hover .bnr_arw {
		right: 0;
	}
}
@media screen and (min-width: 1024px) {
	.bnr_item {
		width: calc(33.333% - 20px);
		height: 100%;
	}
	.bnr_item .bnr_arw {
		width: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.bnr_txt {
		font-size: 24px;
	}
	.bnr_item .bnr_arw {
		width: 40px;
	}
}
/* 下層ページ角丸コンテンツ */
.sub_pg_con {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
}
.sub_pg_con + .sub_pg_con {
	margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
	.sub_pg_con {
		border-radius: 25px;
		padding: 50px 70px 60px 70px;
	}
	.sub_pg_con + .sub_pg_con {
		margin: 60px 0 0;
	}
}
/* 総合型選抜/一般選抜POINTセクション */
#selection_point {
	background: url(../images/common/bg_02.webp);
	margin: 30px 0 0;
	padding: 50px 0;
}
#selection_point article + article {
	margin: 40px 0 0;
}
@media only screen and (min-width: 768px) {
	#selection_point {
		margin: 100px 0 0;
		padding: 150px 0;
	}
	#selection_point article + article {
		margin: 50px 0 0;
	}
}
/* バウンスイン */
.bounce-in, .bounce-in-continue, .bounce-in-continue02 {
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
}
.bounce-in.bounce-in-action, .bounce-in-continue.bounce-in-action, .bounce-in-continue02.bounce-in-action {
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
	transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}