@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust:none;
}

body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0 none;
	margin: 0;
	padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*--[Win Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
:focus
{?moz-outline-style:none;}

/*--[Mac Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
a { outline:none;}
a{
	text-decoration:none;
	color: #a82d42;
}
a:hover{
	text-decoration:underline;
}
hr {
	clear: both;
	border: solid 1px #fff;
	margin: 15px 0;
}
br {
	letter-spacing: 0;
}
img {
	border: none;
	vertical-align: bottom;
}

.clearfix:after {
	content: "."; /* 新しい要素を作る */
	display: block; /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
	overflow:hidden;
	font-size:0.1em;
	line-height:0;
}


/*Flex Box*/
.flex {
	clear: both;
	display: flex;
	flex-wrap: wrap;/*親の横幅以上は折り返す*/
}
.flex-item-center {
	align-items: center;/*縦中央揃え*/
}
.justify-content-space-between {
	justify-content: space-between;
}

.flex-item {
}
.flex-item img {
	max-width: 100%;
	height: auto;
}
.flex-2 .flex-item {
	width: 48%;
	margin-right: 4%;
}
.flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0;
}
.flex-2 .flex-item:nth-last-of-type(-n+2) {
}
.flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.flex-3 .flex-item:nth-last-of-type(-n+3) {
}
.flex-4 .flex-item {
	width: 22.0%;
	margin-right: 4%;
}
.flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.flex-4 .flex-item:nth-last-of-type(-n+4) {
}
.flex-5 .flex-item {
	width: 18.4%;
	margin-right: 2%;
}
.flex-5 .flex-item:nth-of-type(5n) {
	margin-right: 0;
}
.flex-5 .flex-item:nth-last-of-type(-n+5) {
}


.none {
	display: none;
}
.shadow {
	box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
}
.marker_yellow{
	background: linear-gradient(transparent 70%, #fff1a0 0%);
	display: inline;
	padding: 10px 0 0;
}


/*テキスト*/
.txtBold {
	font-weight: bold;
}
.txtLarge {
	font-size: 150%;
}
.txtSmall {
	font-size: 68.8%;
	line-height: 1.5;
}
.txtMid {
	font-size: 100%;
}
.txtXSmall {
	font-size: 75%;
	line-height: 1.35;
}
small{
	font-size: 50%;
}

/*ページ別カラー*/
.m_red{
	color: #a82d42;
}
.s_blue{
	color: #25618c;
}

/*学部別カラー*/
.color_hougaku{
	color: #f1391d;
}
.color_keiei{
	color: #fb6333;
}
.color_keizai{
	color: #f5b616;
}
.color_rikou{
	color: #0f84e1;
}
.color_toshi{
	color: #41cac9;
}
.color_nougaku{
	color: #04a176;
}
.color_yakugaku{
	color: #8056ba;
}
.color_gaikoku{
	color: #f4d924;
}
.color_ningen{
	color: #f0658c;
}
.color_jyohou-k{
	color: #888;
}


/*テキストカラー*/
.txtGray {
	color: #bbb;
}
.txtGreen {
	color: #00716e;
}
.txtOrange{
	color:#f05328;
}
.txtBlue {
	color: #00A0E9;
}
.txtPink {
	color: #ed838b;
}
.txtRed {
	color: #cd0000;
}
.txtGold{
	color: #B5954A;
}


/*フォント*/
.txtMincho {
	font-family: ten-mincho, serif;
	font-weight: 400;
	font-style: normal;
}


/*リストスタイル*/
.list {
	margin-left: 1.5em;
}
.list li {
	margin-bottom: 10px;
}
.list li:last-child {
	margin-bottom: 0;
}
.lstDisc {
	/*黒丸*/
	list-style-type: disc;
}
.lstNum {
	/*数字*/
	list-style-type: decimal;
}
.lstDecimal {
	/*数字*/
	list-style-type: decimal;
}
.lstCircle {
	/*白丸*/
	list-style-type: circle;
}
.lstSquare {
	/*黒四角*/
	list-style-type: square;
}
.lstAlp_L {
	/*大文字アルファベット*/
	list-style-type: upper-latin;
}
.lstNon {
	list-style-type: none !important;
}
.lstUpperRoman {
	/*大文字のローマ数字*/
	list-style-type: upper-roman;
}

.indent {
	margin-left: 2em;
}

/*左右中央寄せ（1）*/
.imgCenter,
.aligncenter {
	display: block;
	margin: 0 auto 20px;
}
.imgLeft,
.alignleft {
	float: left;
	margin: 0 20px 15px 0;
}
.imgRight,
.alignright {
	float: right;
	margin: 0 0 15px 20px;
}

/*左右中央寄せ（2）*/
.center {
	text-align: center;
}
.left,
.left th {
	text-align: left !important;
}
.right {
	text-align: right !important;
}

/*マージンリセット*/
.mRight0 {
	margin-right: 0 !important;
}
.mBottom0 {
	margin-bottom: 0 !important;
}


/*テーブル*/
table {
	border-collapse: collapse;
	border: none;
	margin-bottom: 2em;
	line-height: 1.7;
}

.table {
	box-sizing: border-box;
	border-collapse: collapse;
	font-size: 14px;
}
table th,
table td {
	border: solid 1px #ccc;
	text-align: left;
	padding: 8px 10px;
}
table th {
	background-color: #f1f1f1;
	font-weight: normal;
}
table td {
}
table td:nth-of-type(even){
}
table tr:last-of-type th,
table tr:last-of-type td {
	/*border-bottom: none;
	padding-bottom: 0;*/
}
table tr:nth-of-type(even) th {
}
table tr:nth-of-type(even) td:nth-of-type(even) {
}


/*全幅*/
.fullWidth {
	width: 100%;
}

/*改行しない*/
.nowrapTable th,
.nowrap {
	white-space: nowrap;
}


/*サイト構成*/
html {
	height: 100%;
}
html.wf-active,
html.loading-delay {
}
body{
	height: 100%;
	color: #222;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.05em;

	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
}

/*GoogleMapレスポンシブ対応*/
.gmap {
	clear: both;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*colorbox*/
#cboxContent {
	margin-top: 0 !important;
}
#cboxOverlay {
	background-color: rgba(255,255,255,0.8) !important;
}
#cboxLoadedContent {
	border: solid 5px #fff !important;
}

/*共通 トップページ*/
.inview-fade {
	opacity: 0;
	transition: 2.5s;/*スクロールインでフェードする時間*/
}
.inview-show{
	opacity: 1.0;
}


/*共通 footer banner*/
.footer_bnr{
	width: 530px;
	margin: 100px auto 50px;
}
.footer_bnr .bnr{
	width: 244px;
}
.footer_bnr .bnr img{
	width: 100%;
	height: auto;
}

.privacy{
	padding-bottom: 10px;
	font-size: 12px;
}


/*共通 footer*/
footer{
	text-align: center;
	width: 100%;
	padding-bottom: 108px;
}
.copy{
	background-color: #a82d42;
	padding: 10px 0;
	font-size: 11px;
	color: #fff;
}
#goTop{
	position: fixed;
	bottom: 150px;
	right: 40px;
	z-index: 9999;
}


.footer_link{
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 108px;
	line-height: 108px;
	z-index: 9990;
}
.footer_link a{
	display: inline-block;
	background-color: #e5c0c6;
	width: 100%;
	font-size: 32px;
	font-weight: 900;
}
.footer_link a span{
	display: inline-block;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 18px solid #a82d42;
	padding-left: 16px;
	width: 0;
	height: 0;
	margin: 0 0 4px;
	font-size: 0;
	vertical-align: middle;
}
.footer_link a:hover{
	text-decoration: none;
	background-color: #d597a0;
}




/*@media screen and (min-width: 1281px) {*/
@media screen and (min-width: 768px) {
/*画面幅が768px以上（PC）*/
/*.pc_only {
	display: block;
}*/
.sp_only {
	/*スマホでは非表示*/
	display: none !important;
}

body {
	position: relative;
}


}/*PC End*/





















@media screen and (max-width: 767px) {
/*画面幅が767px以下（スマホ専用スタイル）*/
.pc_only {
	/*PC以外は非表示*/
	display: none !important;
}
.sp_only {
	display: block;
}

/*Flex Box*/
.mb-flex-1 .flex-item {
	width: 100% !important;
}
.mb-flex-1 .flex-item:last-of-type {
}
.mb-flex-2 .flex-item {
	width: 46% !important;
	margin-right: 7% !important;
}
.mb-flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0 !important;
}
.mb-flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.mb-flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.mb-flex-3 .flex-item:nth-last-of-type(-n+3) {
}
.mb-flex-4 .flex-item {
	width: 23.5%;
	margin-right: 2%;
}
.mb-flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.mb-flex-4 .flex-item:nth-last-of-type(-n+4) {
}


body{
	width: 100%;
}
a {
	-webkit-tap-highlight-color:rgba(82,27,96,0.4);
	cursor: pointer;
}
.blur {
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
}

.imgLeft,
.imgRight,
.imgCenter,
.aligncenter,
.alignleft,
.alignright {
	clear: both;
	display: block;
	width: 100%;
	margin: 0 0 10px;
}

#goTop {
	bottom: 70px;
	right: 10px;
}
#goTop img{
	width: 54px;
	height: 54px;
}

.footer_link{
	height: 60px;
	line-height: 60px;
}

/*スライドテーブル*/
.mobileSlideBlock {
	display: block;
	overflow-x: auto;
	position: relative;
	width: 100%;
}
.mobileSlideBlock .box {
	min-width: 600px;
}

.blockTable,
.blockTable tbody,
.blockTable tr,
.blockTable th,
.blockTable td {
	display: block;
}





}/*スマホ End*/
