@charset "utf-8";
/******▼html・body・wrapper▼******/
html, body, #wrapper {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	-webkit-text-size-adjust: none;
	font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: url("../images/new/common/body-bg.png") no-repeat fixed 90% 80%;
}
#wrapper {
	height: 100%;
	font-size: 1.6em;
	line-height: 1.7;
	color: #353535;
}
.text-center {
	text-align: center;
}
/************************************
▼header▼
************************************/
#header {
	padding: 20px 15px;
	height: 93px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background-color: rgba(255,255,255,1);
}
#header-logo {
	width: 80%;
	max-width: 240px;
	display: block;
}
#header-logo img {
	width: 100%;
	display: block;
	line-height: 1;
}
@media screen and (min-width:1100px){
	#header {
		padding: 0 0;
		position: fixed;
		justify-content: flex-start;
		width: 240px;
		height: 100%;
		flex-direction: column;
		background-color: rgba(11,52,119,1);
		z-index: 9999;
		box-shadow: 0 0 1px rgba(0,0,0,0.2);
	}
	#header-logo {
		width: auto;
		padding: 15px;
		background-color: #FFFFFF;
		border-bottom: 1px solid rgba(11,52,119,0.4);
	}
}

/************************************
笆ｼsp-btn笆ｼ
************************************/
#sp-btn,
#sp-btn span {
	transition: all .4s;
	margin: 0;
}
#sp-btn {
	position: fixed;
	z-index: 9999;
	top: 24px;
	right: 15px;
	width: 44px;
	height: 44px;
	cursor: pointer;
	text-align: center;
	background: rgba(23,73,145,1);
	border-radius: 50%;

}
#sp-btn span {
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background-color: #FFFFFF;
}
#sp-btn span:nth-of-type(1) {
	top: 16px;
}
#sp-btn span:nth-of-type(2) {
	top: 21px;
}
#sp-btn span:nth-of-type(3) {
	top: 26px;
}
#sp-btn.active {
	background: none;
}
#sp-btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
#sp-btn.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
#sp-btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-5px) rotate(45deg);
	transform: translateY(-5px) rotate(45deg);
}
@media screen and (min-width:1100px){
	#sp-btn {
		display: none;
	}
}
/************************************
笆ｼglobal-nav笆ｼ
************************************/
#global-nav {
	position: fixed;
	right: 0;
	top: 0;
	display: none;
	z-index: -10;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding-top: 90px;
	background-color: rgba(23,73,145,1);
}
#global-nav::before {
	content: "MENU";
	position: absolute;
	left: 1rem;
	top: 20px;
	font-size: 2.0em;
	font-weight: bold;
	color: #FFFFFF;
}
#global-nav.active {
	display: block;
	z-index: 9998;
}
#global-nav li {
	list-style: none;
	font-size: 1em;
	font-weight: bold;
	position: relative;
}
#global-nav li p,
#global-nav li a {
	padding: 1rem 1rem;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	position: relative;
}
#global-nav li p br,
#global-nav li a br {
	display: none;
}
#global-nav li:first-child p,
#global-nav li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);
}
#global-nav p::before,
#global-nav a::before {
	content: '';
	height: 9px;
	width: 9px;
	display: block;
	border: 1px solid rgba(255,255,255,0.8);
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -5px;
}
#global-nav li a.blank {
	background-image: url(../images/new/common/blank-white.png);
	background-repeat: no-repeat;
	background-position: center right 19px;
	background-size: 18px;
}
#global-nav li p.no-link::before,
#global-nav li a.no-link::before,
#global-nav li a.blank::before {
	display: none;
}
#global-nav li p.none {
	opacity: 0.5;
	background-color: rgba(0,0,0,0.4);
}
#global-nav p::before {
	display: none !important;
}
#global-nav li span {
	display: inline-block;
	font-size: 0.9em;
	margin-left: 5px;
}
#global-nav li ul {
	display: none;
}
#global-nav li ul.active {
	display: block;
	position: relative;
	z-index: 20;
}
#global-nav li ul li {
	background: rgba(255,255,255,0.15);
}
#global-nav li .trigger {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}
#global-nav li .trigger::before,
#global-nav li .trigger::after {
	content: '';
	height: 1px;
	width: 15px;
	display: block;
	background: rgba(255,255,255,0.8);
	position: absolute;
	top: 28px;
	right: 20px;
}
#global-nav li .trigger::after {
	height: 15px;
	width: 1px;
	top: 21px;
	right: 27px;
}
#global-nav li .trigger.active::after {
	display: none;
}
#global-nav .acordion_tree li a {
	border-top: 0;
}
#global-nav li .language span {
	display: block;
	padding-left: 1.8rem;
	background: url(../images/new/common/language-icon2.png) no-repeat center left 0;
}
@media screen and (min-width:1100px){
	#nav {
		position: relative;
		right: auto;
		top: auto;
		z-index: 1000;
		width: 100%;
	}
	#global-nav {
		position: relative;
		right: auto;
		top: auto;
		display: block;
		align-items: center;
		line-height: 1.2;
		z-index: 1;
		padding: 0;
		height: auto;
		overflow-y: inherit;
		-webkit-overflow-scrolling: touch;
		background: none;
	}
	#global-nav::before {
		display: none;
	}
	#global-nav li {
		font-weight: normal;
	}
	#global-nav li.sp {
		display: none;
	}
	#global-nav li p,
	#global-nav li a {
		color: rgba(11,52,119,1);
		background-color: rgba(255,255,255,0.9);
		border-top: 1px solid rgba(255,255,255,0.4);
		border-bottom: 1px solid rgba(11,52,119,0.4);
		transition: all .4s;
	}
	#global-nav li a.blank {
		background-image: url(../images/new/common/blank.png);
	}
	#global-nav li p.none {
		opacity: 0.7;
		background-color: rgba(255,255,255,0.9);
	}
	#global-nav li p br,
	#global-nav li a br {
		display: inline;
	}
	#global-nav li span {
		display: block;
		margin: 5px 0 0;
	}
	#global-nav li span.trigger {
		display: none;
	}
	#global-nav li p::before,
	#global-nav a::before,
	#global-nav li a.no-link::before {
		border-color: rgba(11,52,119,0.8);
		display: block;
	}
	#global-nav ul li a::before {
		border-color: rgba(255,255,255,0.8);
	}
	#global-nav li:hover p,
	#global-nav li:hover a,
	#global-nav li.active a {
		color: rgba(171,30,30,1);
		background-color: rgba(255,255,255,1);
		position: relative;
	}
	#global-nav li:hover ul {
		display: block;
		position: absolute;
		left: 100%;
		width: 260px;
		top: 0;
		z-index: 20;
		border-radius: 6px;
	}
	#global-nav li:hover ul li {
		width: auto;
	}
	#global-nav li:hover ul li a,
	#global-nav li:hover ul li p {
		background-color: rgba(11,52,119,0.9);
		border-top: 1px solid rgba(255,255,255,0.4);
		color: #FFFFFF !important;
	}
	#global-nav li:hover ul li:hover a {
		background-color: rgba(171,30,30,0.9);
	}
	#global-nav li:hover ul li a::after {
		display: none;
	}
	#global-nav li:hover ul li:first-child a {
		border-top: 0;
	}
	#global-nav li .language span {
		background-image: url(../images/new/common/language-icon.png);
	}
	#global-nav li ul a.blank {
		background-image: url(../images/new/common/blank-white.png);
		background-size: 15px;
	}
}
/************************************
▼sub-nav▼
************************************/
#sub-nav {
	display: none;
}
@media screen and (min-width:1100px){
	#sub-nav {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		background-color: rgba(11,52,119,0.7);
	}
	#sub-nav li {
		width: 25%;
		list-style: none;
		position: relative;
	}
	#sub-nav li a {
		border-right: 1px solid rgba(255,255,255,0.4);
		display: block;
		padding: 0.92em 0;
		color: #FFFFFF;
		text-align: center;
		text-decoration: none;
		transition: all .4s;
		line-height: 1.5;
	}
	#sub-nav li a.blank {
		background: url(../images/new/common/blank-white.png) no-repeat center right 10px;
		background-size: 15px;
	}
	#sub-nav li a span {
		display: block;
	}
	#sub-nav li a:hover {
		background-color: rgba(255,255,255,0.6);
	}
	#sub-nav li ul {
		display: none;
	}
	#sub-nav li:hover ul {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 20;
		width: 100%;
		background-color: rgba(11,52,119,0.9);
	}
	#sub-nav li:hover ul li {
		width: 100%;
		border-right: 0;
		border-top: 1px solid rgba(255,255,255,0.4);
	}
	#sub-nav li ul li a {
		padding: 0.8em 0;
	}
}
/************************************
▼contents-head▼
************************************/
#contents-head {
	height: 160px;
	display: flex;
	align-items: center;
	background: url(../images/new/common/inpage-bg-20210430.png) no-repeat center #FFF;
	background-size: cover;
}
.contents-head-text {
	margin: 0 auto;
	text-align: center;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.45;
	letter-spacing: 0.06em;
	color: #170b77;
}
.contents-head-text span {
	display: block;
	font-weight: normal;
	font-size: 0.5em;
	color: #b40804;
}
@media screen and (min-width:1100px){
	#contents-head {
		height: 300px;
	}
	.contents-head-text {
		margin-top: 1.5em;
		font-size: 2.36em;
	}
}
/************************************
▼pan-list▼
************************************/
#pan-list {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	font-size: 0.7em;
}
#pan-list p {
	max-width: 1200px;
	padding: 0.7em 3em;
	margin: 0 auto;
}

@media screen and (min-width:1100px){
	#contents {
		margin-left: 240px;
		position: relative;
	}
}
/************************************
▼contents-box▼
************************************/
.contents-bg {
	background-color: rgba(23,73,145,0.05);
	padding: 1.5em 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.contents-box {
	max-width: 1200px;
	padding: 2em;
	margin: 0 auto;
}
.contents-box.min {
	max-width: 900px;
}
.contents-box p {
	margin: 1.5em 0;
}
.contents-box p.date {
	margin-bottom: -2em;
	color: #170b77;
	font-weight: bold;
}
.contents-box p.icon {
	position: relative;
	padding: 0 0 0 1.5em;
}
.contents-box p.icon::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 15px;
	height: 15px;
	z-index: 2;
	background-color: rgba(23,73,145,1);
	border-radius: 50%;
}
.contents-box p.icon::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 4px;
	height: 5px;
	width: 5px;
	z-index: 3;
	border: 1px solid #FFFFFF;
	border-right-width: 0;
	border-top-width: 0;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
}
/************************************
▼contents-title▼
************************************/
.contents-bg .contents-title {
	padding-top: 1em;
}
.contents-title {
	text-align: center;
	color: #170b77;
	font-size: 2.4em;
	line-height: 1.4;
	padding: 2em 0;
}
.contents-title span {
	font-size: 0.5em;
	color: #b40804;
	display: block;
	margin: 0 auto;
	font-weight: normal;
}
.contents-title span.date {
	font-size: 0.5em;
	color: #353535;
	margin-top: 10px;
}
.contents-sub-title {
	font-size: 1.6em;
	margin: 1.5em 0;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #b40804;
}
.contents-sub-title span {
	font-size: 0.7em;
	display: block;
	color: #170b77;
}
.contents-subsub-title {
	font-size: 1.3em;
	margin: 1.5em 0 0.5em;
	padding: 0.5em;
	background-color: rgba(23,73,145,0.1);
}
/************************************
▼page-title▼
************************************/
#page-title {
	font-size: 1.6em;
	text-align: center;
	font-weight: bold;
	background: url(../images/new/common/title-bg.jpg) no-repeat center / cover;
	color: #FFFFFF;
	text-shadow: 0 0 20px rgba(0,0,0,0.5);
	padding: 1.5em 2em;
	line-height: 1.4;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-top: 1px solid rgba(0,0,0,0.1);
}
#page-title.line2 {
	padding: 1.8rem 2rem;
}
@media screen and (min-width:1100px){
	#page-title  {
		font-size: 2.3em;
		padding-top: 3.3em;
	}
}
/************************************
▼number-icon-list▼
************************************/
.number-icon-list {
	margin-bottom: 1em;
}
.number-icon-list.space {
	margin-bottom: 2.5em;
}
.number-icon-list li {
	list-style: none;
	margin: 0.8em 0;
	padding-left: 30px;
	line-height: 1.7;
	position: relative;
}
.number-icon-list .icon {
	position: absolute;
	top: 0;
	left: 0;
}
/******▼circle-list▼******/
.circle-list {
	margin-bottom: 2rem;
}
.circle-list li {
	position: relative;
	padding-left: 28px;
	margin: 0.7rem 0;
	list-style: none;
	font-size: 1rem;
	line-height: 1.7;
}
.circle-list li::before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 1em;
	height: 1em;
	background-color: rgba(23,73,145,1);
	border-radius: 50%;
}
@media screen and (min-width:1100px){
	.circle-list.half {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.circle-list.half li {
		width: 49%;
	}
}
/************************************
▼max-img▼
************************************/
.max-img {
	width: 100%;
	display: block;
	margin: 0 auto 1.5em;
}
.program-pdf {
	font-size: 1.3em;
	margin: 1.5em 0 0.5em;
	padding: 0.5em;
	display: flex;
	flex-direction: column;
	font-weight: bold;
	color: #353535;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	border: 3px solid rgba(23,73,145,0.5);
	transition: all .4s;
}
.program-pdf:hover {
	color: #FFFFFF;
	background-color: rgba(23,73,145,0.5);
}
.program-pdf span {
	font-size: 1rem;
	display: block;
}
/************************************
▼max-img▼
************************************/
.flex-list {
	margin: 1em 0;
}
.flex-list-box {
	margin: 1em 0;
}
.flex-list-box .max-img {
	margin-bottom: 0.5em;
}
@media screen and (min-width:700px){
	.flex-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
	}
	.flex-list.top {
		align-items: flex-start;
	}
	.flex-list-box {
		width: 49%;
	}
	.list01 .flex-list-box {
		width: 100%;
	}
	.list01 .flex-list-box .max-img {
		max-width: 540px;
	}
}
@media screen and (min-width:1100px){
	.list03 .flex-list-box {
		width: 31%;
	}
}
/************************************
▼greeting-img▼
************************************/
.greeting-img {
	text-align: center;
}
.greeting-name {
	margin-top: -1em !important;
	font-size: 1.3em;
	font-weight: bold;
}
@media screen and (min-width:700px){
	.greeting-img  {
		float: right;
		margin: 1.5em 0 2rem 2rem;
		width: 250px;
	}
}
/************************************
▼manage-table▼
************************************/
.manage-table {
	width: 100%;
	border-spacing: 0;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	margin-bottom: 5px;
	line-height: 1.5;
	border-collapse: separate;
}
.manage-table th,
.manage-table td {
	background: #fff;
	padding: 7px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	text-align: center;
}
.manage-table th {
	vertical-align: top;
	padding-top: 7px;
	padding-bottom: 7px;
	background-color: #f3f6f9;
}
@media screen and (max-width: 700px) {
	.manage-table thead {
		display: none;
	}
	.manage-table td {
		display: block;
		width: 100%;
		padding: 10px 3%;
		position: relative;
		text-align: left;
		padding-left: 100px;
	}
	.manage-table.en td {
		padding: 10px 3%;
	}
	.manage-table tr td::before {
		content: "";
		position: absolute;
		font-size: 0.9rem;
		top: 12px;
		left: 3%;
		width: 70px;
		background-color: #f3f6f9;
		text-align: center;
	}
	.manage-table.en tr td::before {
		display: none;
	}
	.manage-table td.none {
		display: none;
	}
	.manage-table td br {
		display: none;
	}
	.manage-table.en td br {
		display: inline;
	}
	.manage-table tr td:nth-child(1) {
		background-color: #f3f6f9;
	}
	.manage-table tr td:nth-child(1)::before {
		content: "所属";
		background-color: #FFFFFF;
	}
	.manage-table tr td:nth-child(2)::before {
		content: "氏名";
	}
	.manage-table tr td:nth-child(3)::before {
		content: "外線 (088)";
	}
	.manage-table tr td:nth-child(4)::before {
		content: "内線";
	}
	.manage-table.en tr td::before {
		display: none;
	}
}
#toTop {
	position: fixed;
	bottom: 24px;
	right: 15px;
	width: 44px;
	height: 44px;
	z-index:1000;
	text-align:center;
	line-height:120%;
	display: block;
	color: #FFFFFF;
	padding: 15px 20px;
	margin: 0;
	background-color: rgba(23,73,145,1);
	border-radius: 50%;
}
#toTop::before {
	content: '';
	height: 10px;
	width: 10px;
	display: block;
	border: 2px solid #FFFFFF;
	border-right-width: 0;
	border-top-width: 0;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -5px;
}
#footer {
	text-align: center;
	padding: 1.5em 5em;
	border-top: 1px solid rgba(0,0,0,0.1);
}
#footer a {
	padding-right: 1.5em;
	background: url(../images/new/common/blank.png) no-repeat right 4px;
	background-size: 18px;
	color: #170b77;
}
#footer a:hover {
	color: #b40804;
}
#copy {
	margin-top: 1em;
}
@media screen and (min-width:1100px){
	#footer {
		margin-left: 240px;
	}
}
/************************************
▼home-box▼
************************************/
.home-box {
	display: flex;
	flex-direction: column;
}
@media screen and (min-width: 800px) {
	.home-box {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}
.news-box {
	margin: 2em 0;
}
@media screen and (min-width: 800px) {
	.news-box {
		width: 48%;
		margin-left: 4%;
	}
	.news-box:nth-child(2n+1) {
		margin-left: 0;
	}
}
.news-box-title {
	position: relative;
}
.news-box-title h2 {
	font-size: 1.6rem;
	padding: 0.5rem 1.7em;
	color: #FFFFFF;
	border-radius: 4px 4px 0 0;
	position: relative;
}
.news-box-title h2::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 1rem;
	z-index: 10;
	width: 14px;
	height: 44px;
	background: url(../images/new/common/footer-box-title.png) no-repeat;
}
.news-box-title h2::after {
	content: "";
	position: absolute;
	top: -10px;
	right: 1rem;
	z-index: 10;
	width: 14px;
	height: 44px;
	background: url(../images/new/common/footer-box-title.png) no-repeat;
}
.news-box-title h2 span {
	font-size: 0.9rem;
	display: block;
	margin: -0.3em 0 0.3em;
}
.news-box-title a {
	position: absolute;
	font-size: 0.9rem;
	top: 50%;
	right: 2.8rem;
	background-color: rgba(255,255,255,0);
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
	border-radius: 4px;
	padding: 0.2em 0.7em;
	margin-top: -17px;
	text-decoration: none;
}
.news-box-title a:hover {
	background-color: rgba(255,255,255,1);
}
@media screen and (min-width: 1000px) {
	.news-box-title h2 span {
		display: inline-block;
		margin: 0 0 0 0.5em;
	}
}
.home-news-list {
	border: 2px solid;
	border-top: 0;
	max-height: 300px;
	overflow-y: auto;
	border-radius: 0 0 4px 4px;
}
@media screen and (min-width: 800px) {
	.home-news-list {
		height: 300px;
	}
}
.home-news-list li {
	position: relative;
	list-style: none;
}
.home-news-list li a {
	display: block;
	color: #212121;
	padding: 1em 1em 1em 100px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	transition: all .4s;
	text-decoration: none;
}
.home-news-list li a:hover {
	color: rgba(23,73,145,1);
}
.home-news-list li a span {
	position: absolute;
	top: 1.2rem;
	left: 1rem;
	color: rgba(171,30,30,1);
	font-size: 0.8em;
}
.admission .news-box-title h2 {
	background-color: #b40804;
}
.admission .news-box-title a:hover {
	color: #b40804;
}
.admission .home-news-list {
	border-color: #b40804;
}
.admission .home-news-list a:hover {
	background-color: rgba(180,8,4,0.1);
}
.event .news-box-title h2 {
	background-color: #170b77;
}
.event .news-box-title a:hover {
	color: #170b77;
}
.event .home-news-list {
	border-color: #170b77;
}
.event .home-news-list a:hover {
	background-color: rgba(23,11,119,0.1);
}
.movie .news-box-title h2 {
	background-color: #0b772f;
}
/************************************
▼head-movie▼
************************************/
#home-movie {
	border: 2px solid #0b772f;
	border-top: 0;
	padding: 13px 11px;
	border-radius: 0 0 4px 4px;
}
#home-movie video {
	display: block;
}
@media screen and (min-width: 800px) {
	#home-movie {
		display: flex;
		align-content: center;
		height: 300px;
	}
}
.home-news-btn {
	background-color: rgba(23,73,145,1);
	display: block;
	max-width: 220px;
	padding: 1em 0;
	margin: 3em auto 2em;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	transition: all .4s;
}
.home-news-btn:hover {
	color: #FFFFFF;
	background-color: rgba(171,30,30,1);
}
.head-slide-box div {
	width: 100%;
	height: 400px;
	background: url(../images/new/home/slide-20210419.jpg) no-repeat center;
	background-size: cover;
	position: relative;
}
@media screen and (min-width: 700px) {
	.head-slide-box div {
		height: 800px;
	}
}
.head-slide-box div img {
	position: absolute;
	z-index: 10;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 88%;
	max-width: 1400px;
}
.head-slide-box div.slide02 {
	background-image: url(../images/new/home/slide-002.jpg);
}
.head-slide-box div.slide03 {
	background-image: url(../images/new/home/slide-004.jpg);
}
.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 10%;
	width: 80%;
	display: flex;
	justify-content: center;
}
.slick-dots li {
	list-style: none;
	height: 5px;
	width: 30px;
	margin: 0 4px;
	text-indent: -9999px;
	cursor: pointer;
	background-color: rgba(0,0,0,0.2);
}
.slick-dots li.slick-active {
	background-color: rgba(255,255,255,0.4);
}
@media screen and (min-width: 700px) {
	.head-slide-box div {
		height: 800px;
	}
}
.slick-arrow {
	display: none !important;
}
@media screen and (min-width: 700px) {
	.slick-arrow {
		display: block !important;
		position: absolute;
		z-index: 10;
		top: 50%;
		left: 0;
		width: 44px;
		height: 44px;
		margin-top: -22px;
		text-indent: -9999px;
		overflow: hidden;
		background-color: rgba(23,73,145,1);
	}
	.slick-arrow.slick-next {
		left: auto;
		right: 0;
	}
	.slick-arrow::after {
		content: "";
		display: block;
		box-sizing: border-box;
		position: absolute;
		width: 13px;
		height: 13px;
		border-bottom: 2px solid #FFFFFF;
		border-right: 2px solid #FFFFFF;
		transform: rotate(135deg);
		left: 18px;
		top: 14px
	}
	.slick-arrow.slick-next::after {
		transform: rotate(-45deg);
		left: auto;
		right: 18px;
	}
}
.head-slide-box div.slick-active img {
	animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	opacity: 0;
}
 
@keyframes slideIn {
	0% {
		transform: translateY(-40px) scaleX(0.5);
		opacity: 0;
	}
	100% {
		transform: translateY(0) scaleX(1);
		height: auto;
	}
	40%,100% {
		opacity: 1;
	}
}

.fade-in {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	transition: 1.0s;
	transform: translateY(50px);
	opacity: 0;
}
.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}


/************************************
▼tab_radio▼
************************************/
.tab_radio {
	display:none;
}
.tab_menu{
	border: solid #8ba4c8;
	border-width: 2px 2px 0 2px;
	border-radius: 6px 6px 0 0;
	margin: 0 2px;
	padding: 0.5em 0 0.5em;
	width:44%;
	display:inline-block;
	text-align: center;
	background-color: #8ba4c8;
	color: #FFFFFF;
	cursor: pointer;
}

.tab_radio:checked + .tab_menu {
	background-color: #FFFFFF;
	color: #353535;
}

.tab_contains{
	margin: 0 auto;
	border: solid #8ba4c8 2px;
	border-radius: 6px;
	padding: 1rem;
	margin-top:-2px;
	background-color: #FFFFFF;
	display: none;
	text-align: left;
}
.greeting .tab_radio:checked + .tab_menu{
	background-color: #f3f6f9;
}
.greeting .tab_contains {
	padding: 1rem 2rem;
	background-color: #f3f6f9;
}
#tab_radio_A:checked ~ #tab_contains_A,
#tab_radio_B:checked ~ #tab_contains_B {
	display:block;
}
#tab_radio_C:checked ~ #tab_contains_C,
#tab_radio_D:checked ~ #tab_contains_D {
	display:block;
}
/************************************
▼university-map▼
************************************/
.university-map {
	text-align: center;
}
.university-map img {
	max-width: 100%;
	display: block;
}
.university-map a {
	display: block;
	max-width: 840px;
	margin: 0 auto 1em;
	background-color: rgba(11,52,119,1);
	color: #FFFFFF;
	padding: 0.7em;
	text-decoration: none;
	border-radius: 6px;
}
.university-map a:hover {
	opacity: 0.6;
}
/************************************
▼normal-table▼
************************************/
.normal-table {
	width: 100%;
	border-spacing: 0;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	margin-bottom: 30px;
	line-height: 1.5;
	border-collapse: separate;
}
.normal-table th,
.normal-table td {
	background: #fff;
	padding: 7px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.normal-table th {
	vertical-align: top;
	padding-top: 7px;
	padding-bottom: 7px;
	background-color: #f3f6f9;
}


/************************************
▼page-list▼
************************************/

/******▼page-list▼******/
.btn-list {
	margin: 1em auto;
}
.btn-list li {
	list-style: none;
	margin: 1em 0;
}
.btn-list li a,
.btn-list li span {
	text-align: center;
	padding: 1em 0;
	font-weight: bold;
	display: block;
	text-decoration: none;
	border-radius: 6px;
	background-color: #FFFFFF;
	border: 2px solid rgba(23,73,145,0.5);
	color: #212121;
	transition: all .4s;
}
.btn-list li:hover a {
	background-color: rgba(23,73,145,0.5);
	color: #FFFFFF;
}
.btn-list li span {
	background-color: rgba(0,0,0,0.2);
	border: 2px solid rgba(23,73,145,0.2);
	color: #FFFFFF;
}
@media screen and (min-width: 700px) {
	.btn-list {
		display: flex;
		flex-wrap: wrap;
	}
	.btn-list li {
		width: 31.33333%;
		margin: 1em 1% 0;
	}
	.btn-list.wide li {
		width: 48%;
	}
	.btn-list li a,
	.btn-list li span {
		padding: 2em 0;
	}
}




.firstvisit-box {
	display: flex;
	border: 5px solid #1D4799;
	position: relative;
	margin-bottom: 38px;
	border-radius: 6px;
}
.firstvisit-box::before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 100%;
	margin-top: 5px;
	left: 50%;
	margin-left: -30px;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #1D4799;
}
.firstvisit-box.last::before {
	display: none;
}
.firstvisit-box-title {
	background-color: #4670B2;
	padding: 1.2em 1em;
	text-align: center;
	width: 10%;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 1.3em;
	position: relative;
	line-height: 1;
}
.firstvisit-box-title span {
	font-size: 2.1em;
}
.firstvisit-box-text {
	padding: 1.7em 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 90%;
	background-color: #FFFFFF;
}
.firstvisit-box-text h2 {
	color: #1D4799;
	line-height: 1.4;
}
.bg-box {
	border-radius: 6px;
	padding: 1.5em 2em;
	background-color: #DFF0F4;
}
.bg-box.space {
	margin-top: 1.5em;
}
.bg-box h3 {
	line-height: 1.4;
	margin-bottom: 0.3em;
	color: #1D4799;
}
.bg-box a,
.firstvisit-info a{
	color: #111111;
}
.bg-box a:hover,
.firstvisit-info a:hover {
	color: #1D4799;
}
.bg-box.red {
	background-color: #F2DFDF;
}
.bg-box.red h3 {
	color: #AA303F;
}
.bg-box.green {
	background-color: #DFF2E8;
}
.bg-box.green h3 {
	color: #1F9967;
}
.bg-box .circle-list {
	margin-bottom: 0;
}
.bg-box .circle-list.inline li {
	display: inline-block;
	margin-right: 2em;
}
.bg-box.red .circle-list li::before {
	background-color: #AA303F;
}
.bg-box.green .circle-list li::before {
	background-color: #1F9967;
}

.point-list {
	margin: 1em 0 1.5em;
}
.point-list li {
	position: relative;
	padding-left: 28px;
	margin: 0.5rem 0;
	list-style: none;
}
.point-list li .point {
	position: absolute;
	top: 0;
	left: 0;
}

.firstvisit-info {
	margin: 1.5em 0 0;
}
.firstvisit-info h3 {
	display: inline-block;
	padding: 0.2em 0.5em;
	background-color: #FFD39F;
	border-radius: 6px;
	margin-right: 0.5em;
}
.firstvisit-info div {
	display: inline-block;
}
@media screen and (max-width: 740px) {
	.firstvisit-box {
		display: block;
	}
	.firstvisit-box-title {
		width: auto;
		padding: 0.5em 1em 0.8em;
	}
	.bg-box .circle-list.inline li {
		display: inherit;
		margin-right: 0;
	}
	.firstvisit-box-text {
		padding: 1.7em 1.3em;
		display: block;
		width: auto;
	}
}
/************************************
▼form-table▼
************************************/
.form-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-left: 1px solid rgba(0,0,0,0.1);
	margin: 0 0 1em;
	table-layout:fixed;
	word-wrap: break-word;
	overflow-wrap: break-word;
	background-color: rgba(255,255,255,0.9);
}
.form-table th,
.form-table td {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	padding: 15px 15px;
	display: block;
	width: 100%;
}
.form-table input {
	margin: 5px 0;
}
.form-table p {
	margin: 5px 0;
}
.form-table th {
	background-color: rgba(63, 112, 133, 0.10);
	text-align: left;
}
@media screen and (min-width:978px){
	.form-table th,
	.form-table td {
		border-bottom: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		display: table-cell;
		width: auto;
		vertical-align: middle;
	}
	.form-table th {
		width: 30%;
		vertical-align: top;
	}
}
/************************************
▼link-btn▼
************************************/
.link-btn-list {
	display: flex;
	justify-content: space-between;
}
.link-btn-list li {
	list-style: none;
	width: 49%;
}
.link-btn01,
.link-btn02 {
	display: block;
	text-decoration: none;
	text-align: center;
	background-color: #EF7A2B;
	color: #FFFFFF;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 1.3em;
	width: 100%;
	margin-top: 1em;
	font-weight: bold;
}
.link-btn02 {
	background-color: #666666;
}
.link-btn01:hover,
.link-btn02:hover {
	opacity: 0.7;
	color: #FFFFFF;
}
.link-btn01.top-space,
.link-btn02.top-space {
	margin-top: 2em;
}
.input-max {
	border: 1px solid #dddddd;
	width: 100%;
	padding: 0 5px;
	height: 2em;
}
select {
	display: inline-block;
	border: 1px solid #DDDDDD;
}
select.max {
	width: 100%;
}
.select-box {
	position: relative;
	padding-left: 38px;
	margin: 10px 0;
}
.select-number {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(11,52,119,1);
	color: #FFFFFF;
	padding: 0px;
	width: 30px;
	border-radius: 2px;
	text-align: center;
}
.form-sub-title {
	margin-top: 15px;
	margin-bottom: 5px;
	color: rgba(11,52,119,1);
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
}
td .form-sub-title:first-child {
	margin-top: 0;
}
.form-sub-title::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: rgba(63, 112, 133, 0.10);
	display: block;
	margin-left: 0.7em;
}
.input-list-box {
	position: relative;
	padding-left: 140px;
	margin: 10px 0;
}
.input-list-name {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(11,52,119,1);
	color: #FFFFFF;
	padding: 0px;
	width: 130px;
	border-radius: 2px;
	text-align: center;
}
.input-list-line li {
	list-style: none;
	display: inline-block;
	margin-right: 1em;
}
.half-box {
	margin: 0 auto 1rem;
	display: flex;
	flex-wrap: wrap;
}
.half-box div {
	width: 48.5%;
	margin: 0 0 1rem 3%;
	float: left;
}
.half-box div.left {
	clear: both;
	margin-left: 0;
}
.agree-box label {
	border: solid #8ba4c8 2px;
	border-radius: 6px;
	padding: 1rem;
	background-color: #FFFFFF;
	width: 100%;
	display: block;
	cursor: pointer;
	text-align: center;
}