@charset "utf-8";
@import url('https://cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/*font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/
/*font-family: "Poppins", sans-serif;
  font-weight: <weight>;
  font-style: normal;
*/
/*font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
*/
/*font-family: "Old Standard TT", serif;
  font-weight: <weight>;
  font-style: normal;
*/
/*font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/




@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..20');

.gicon:before,
.gicon:after{
  font-family: "Material Symbols Outlined";
  line-height: 1;
}

/* ------- LINK ---------------------------------------------- */
a:link {
  color: inherit;
  text-decoration: inherit;
}
a:visited {
  color: inherit;
  text-decoration: inherit;
}
a:hover {
  color: inherit;
  text-decoration: inherit;
}
a:active {
  color: inherit;
  text-decoration: inherit;
}

a.text-link{
  color: #3681A0;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine){
  a.text-link:hover{
    text-decoration: none;
  }
}



/* ------- BODY ---------------------------------------------- */
html{
  font-size: 62.5%;
}
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  overflow-x: hidden;
  position: relative;
}

*{
  backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased/* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
  max-width: 100%;
}


/* ------- RESPONSIVE ---------------------------------------------- */
@media print, screen and (min-width:781px) {
  .pc-ver {
    display: block;
  }
  .sp-ver {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .pc-ver {
    display: none;
  }
  .sp-ver {
    display: block;
  }
}


/* ------- BODY ---------------------------------------------- */
body{
  background-color: #EBF4FF;
}
.jp{
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.en{
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.en2{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.en3{
  font-family: "Old Standard TT", serif;
  font-style: normal;
}
@media print, screen and (min-width:781px) {
	body{
    font-size: 1.6rem;
    padding-top: 80px;
	}
}
@media screen and (max-width: 780px) {
	body{
    font-size: 1.5rem;
		padding-top: 60px;
		padding-bottom: 60px;
	}
}






/* ------- HEADER ---------------------------------------------- */
#header-area{
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
#logo-main{
	font-weight: 300;
}
#logo-main a{
	display: flex;
	align-items: center;
}
#logo-main .sub{
	align-self: center;
	border-left: 1px solid #EAEAEA;
	font-weight: 500;
	line-height: 1;
}
@media print, screen and (min-width:781px) {
  #header-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
  }
	#logo-main{
		background-color: #FFF;
		display: flex;
		padding-left: 25px;
		padding-right: 60px;
		height: 100%;
		width: 486px;
		position: relative;
		z-index: 2;
	}
	#logo-main .main{
		width: 220px;
	}
	#logo-main .sub{
		padding: 10px 0 10px 30px;
		font-size: 1.5rem;
		margin-left: 15px;
	}
}
@media screen and (max-width: 780px) {
	#header-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
  }
	#logo-main{
		background-color: #FFF;
		display: flex;
		padding-left: 5px;
		height: 100%;
		width: 390px;
		position: relative;
		z-index: 2;
	}
	#logo-main .main{
		width: 136px;
	}
	#logo-main .sub{
		font-size: 1.4rem;
		padding: 5px 0 5px 13px;
		margin-left: 5px;
	}
}



/* ------- HUMBERGER ---------------------------------------------- */
#humberger {
	text-align: center;
	cursor: pointer;
  position: relative;
  transition: .3s;
}
#humberger .trigger, #humberger .trigger > span, #humberger .trigger > span > span {
	transition: ease-out .2s;
	box-sizing: border-box;
}
#humberger .trigger{
	position: absolute;
}
#humberger .trigger > span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: #333333;
}
#humberger .trigger > span:nth-of-type(1) {
	top: 0px;
}
#humberger .trigger > span:nth-of-type(3) {
	bottom: 0;
}
#humberger.active .trigger > span:nth-of-type(2) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	opacity: 0;
}
@media print, screen and (min-width: 781px) {
	#humberger{
		margin-left: 0;
		margin-right: 0;
    height: 80px;
    width: 80px;
  }
	#humberger .trigger{
    width: 20px;
    height: 14px;
    right: 30px;
    top: 35px;
  }
	#humberger .trigger > span:nth-of-type(2) {
    top: 6px;
  }
	#humberger.active .trigger{
		width: 40px;
		right: 20px;
	}
	#humberger.active .trigger > span{
		background-color: #FFF;
	}
  #humberger.active .trigger > span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
  #humberger.active .trigger > span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
	@media (hover: hover) and (pointer: fine){
		#humberger:hover{
			background-color: #0088C9;
		}
		#humberger:hover .trigger > span{
			background-color: #FFF;
		}
	}
}
@media screen and (max-width: 780px) {
  #humberger{
    height: 60px;
    width: 50px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 3;
  }
	#humberger:before{
		background-color: #EAEAEA;
		content: "";
		display: block;
		height: 30px;
		width: 1px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translate(-100%,-50%);
	}
  #humberger .trigger{
    width: 20px;
    height: 16px;
    right: 15px;
    top: 22px;
  }
  #humberger .trigger > span:nth-of-type(2) {
    top: 7px;
  }
  #humberger.active .trigger > span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  #humberger.active .trigger > span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ------- NAVI GLOBAL ---------------------------------------------- */
#navi-global-area .navi-global > ul{
	font-weight: 600;
}
#navi-global-area .navi-global > .btn-entry{
	font-weight: 600;
	line-height: 1;
}
#navi-global-area .navi-global-sp{
	color: #FFF;
	width: 100%;
	position: fixed;
	left: 0;
}
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li{
	border-bottom: 1px solid #FFF;
	font-weight: 700;
}
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul{
	font-weight: 400;
}
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul > li > a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a:after,
#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul > li > a:after{
	background-image: url("../img/ic_arrow_navi.svg");
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	flex-shrink: 0;
}
#navi-global-area .navi-global-sp .btn-entry{
	font-weight: 700;
	line-height: 1;
}
#navi-global-area .navi-global-sp .btn-entry a{
	text-align: center;
}
@media print, screen and (min-width:781px) {
	#navi-global-area{
		border-right: 1px solid #EAEAEA;
		padding-right: 30px;
		margin-right: 0;
		margin-left: auto;
	}
	#navi-global-area .navi-global{
		display: flex;
		align-items: center;
	}
	#navi-global-area .navi-global > ul{
		display: flex;
	}
	#navi-global-area .navi-global > ul > li{
		font-size: 1.2rem;
		margin-left: 25px;
	}
	#navi-global-area .navi-global > ul > li > a{
		transition: .3s;
	}
	@media (hover: hover) and (pointer: fine){
		#navi-global-area .navi-global > ul > li > a:hover{
			opacity: .7;
		}
	}
	#navi-global-area .navi-global > .btn-entry{
		font-size: 1.2rem;
		margin-left: 30px;
	}
	#navi-global-area .navi-global > .btn-entry a{
		background-color: #0088C9;
		color: #FFF;
		display: block;
		text-align: center;
		padding: 10px;
		width: 140px;
		transition: .3s;
	}
	@media (hover: hover) and (pointer: fine){
		#navi-global-area .navi-global > .btn-entry a:hover{
			opacity: .7;
		}
	}
	#navi-global-area .navi-global-sp{
		background-color: #0088C9;
		display: none;
		height: 100vh;
		top: 0;
		overflow-y: auto;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-wrap{
		display: flex;
		align-items: center;
		width: 100%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-left: auto;
		margin-right: auto;
		max-width: 900px;
		min-height: 410px;
		width: 90%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul{
		width: 45.4545%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li{
		font-size: 1.8rem;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child{
		display: flex;
		justify-content: space-between;
		padding: 40px 0;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > div{
		padding-left: 30px;
		width: 12em;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul{
		font-size: 1.4rem;
		padding-right: 30px;
		width: calc(100% - 12em - 20px);
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a{
		padding: 30px;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a:after,
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul > li > a:after{
		height: 6px;
		width: 23px;
	}
	#navi-global-area .navi-global-sp .btn-entry{
		font-size: 2.6rem;
		margin-top: 45px;
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
	}
	#navi-global-area .navi-global-sp .btn-entry a{
		background-color: #333333;
		display: block;
		padding: 30px;
	}
}
@media screen and (min-width: 781px) and (max-width: 1380px) {
	#navi-global-area .navi-global{
		display: none;
	}
}
@media screen and (max-width: 780px) {
	#navi-global-area .navi-global{
		display: none;
	}
	#navi-global-area .navi-global-sp{
		background-color: #0088C9;
		display: none;
		overflow-y: auto;
		height: calc(100vh - 60px);
		top: 60px;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-wrap{
		display: flex;
		padding-top: 75px;
		padding-bottom: 75px;
		width: 100%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner{
		/*padding-top: 60px;
		padding-bottom: 135px;*/
		margin-left: auto;
		margin-right: auto;
		max-width: 505px;
		min-height: 890px;
		width: 65%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li{
		font-size: 1.5rem;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child{
		padding: 20px 25px;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > div{
		width: 12em;
		width: 100%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > div > a{
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > div > a:after{
		background-color: #FFF;
		content: "";
		display: block;
		height: 1px;
		width: 19px;
		flex-shrink: 0;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul{
		padding-left: 10%;
		font-size: 1.4rem;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul > li{
		margin-top: 20px;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a{
		padding: 20px 25px;
	}
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li > a:after,
	#navi-global-area .navi-global-sp .navi-global-sp-inner > ul > li.child > ul > li > a:after{
		height: 5px;
		width: 19px;
	}
	#navi-global-area .navi-global-sp .btn-entry{
		display: none;
	}
}




/* ------- CONTENTS ---------------------------------------------- */
.container{
	background-color: #FFF;
}
@media print, screen and (min-width:781px) {
  
	
	.container{
		padding-bottom: 150px;
	}
	
  .inner{
    margin-left: auto;
    margin-right: auto;
    max-width: 1088px;
    width: 90%;
  }
}
@media screen and (max-width: 780px) {
	.container{
		padding-bottom: 75px;
	}
	
  .inner{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}



/* ------- FOOTER ---------------------------------------------- */
#footer-area{
	background-image: url("../img/bg_footer.jpg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	position: relative;
}
.footer-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.footer-container .catch{
	font-weight: 400;
	letter-spacing: .1em;
}
.footer-container .btn-entry,
#footer-area .btn-entry.sp-ver{
	background-color: #333333;
	color: #FFF;
	font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	letter-spacing: .1em;
	display: block;
	transition: .3s;
}
.footer-container .copyright{
	font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	letter-spacing: .1em;
}
#footer-area .university{
	position: absolute;
	right: 0;
	bottom: 0;
}
#footer-area .university a{
	background-color: #0088C9;
	color: #FFF;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	transition: .3s;
}
#footer-area .university a:after{
	background-image: url("../img/ic_arrow_ft.svg");
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
}
#footer-area .btn-pagetop > a{
	display: block;
	text-align: center;
	font-weight: 500;
}
#footer-area .btn-pagetop > a:before{
	background-image: url("../img/btn_pagetop.svg");
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
}
@media print, screen and (min-width:781px) {
	#footer-area{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 165px 0 180px;
		/*margin-top: 125px;*/
	}
	.footer-container .catch{
		font-size: 2.0rem;
	}
	.footer-container .btn-entry{
		font-size: 1.8rem;
		padding: 35px 15px;
		margin: 30px auto 20px;
		width: 400px;
		position: relative;
	}
	.footer-container .btn-entry:after{
		background-image: url("../img/ic_arrow_navi.svg");
		background-repeat: no-repeat;
		background-size: cover;
		content: "";
		display: block;
		height: 8px;
		width: 33px;
		position: absolute;
		right: 40px;
		top: 50%;
		transform: translateY(-50%);
	}
	@media (hover: hover) and (pointer: fine){
		.footer-container .btn-entry:hover{
			background-color: #666666;
		}
	}
	#footer-area .footer-container .copyright{
		font-size: 1.2rem;
	}
	#footer-area .university a{
		padding: 8px 25px;
	}
	#footer-area .university a:after{
		margin-left: 15px;
		height: 11px;
		width: 8px;
	}
	@media (hover: hover) and (pointer: fine){
		#footer-area .university a:hover{
			background-color: #4DACDA;
		}
	}
	#footer-area .btn-entry.sp-ver{
		display: none;
	}
	#footer-area .btn-pagetop{
		font-size: 1.4rem;
		position: fixed;
		right: 35px;
		bottom: 35px;
		z-index: 97;
	}
	#footer-area .btn-pagetop > a{
		transition: .3s;
	}
	@media (hover: hover) and (pointer: fine){
		#footer-area .btn-pagetop > a:hover{
			opacity: .7;
		}
	}
	#footer-area .btn-pagetop > a:before{
		margin-bottom: 5px;
		height: 60px;
		width: 60px;
	}
}
@media screen and (max-width: 780px) {
	#footer-area{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 80px 0 90px;
	}
	.footer-container .catch{
		font-size: 2.0rem;
		margin-bottom: 30px;
	}
	.footer-container .btn-entry{
		display: none;
		font-size: 1.8rem;
		padding: 15px 15px;
		margin: 30px auto 20px;
		width: 60%;
	}
	#footer-area .footer-container .copyright{
		font-size: 1.0rem;
	}
	#footer-area .university a{
		padding: 8px 25px;
	}
	#footer-area .university a:after{
		margin-left: 15px;
		height: 11px;
		width: 8px;
	}
	#footer-area .btn-entry.sp-ver{
		font-size: 2.0rem;
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 101;
	}
	#footer-area .btn-entry.sp-ver > a{
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 60px;
	}
	
	#footer-area .btn-pagetop{
		font-size: 1.7rem;
		margin: 0 auto 50px;
		position: static !important;
		width: 70px;
	}
	#footer-area .btn-pagetop > a:before{
		margin-bottom: 5px;
		height: 70px;
		width: 70px;
	}
}



/* ------- COMMON ---------------------------------------------- */
.indent-list > li,
.note-list > li{
  text-indent: -1em;
  padding-left: 1em;
}


.heading{
	background-color: #EBF4FF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.heading > h1{
	font-weight: 500;
	text-align: center;
}


.heading-text{
	background-color: #FFF;
}
.heading-text > p{
	font-weight: 500;
}
@media print, screen and (min-width:781px) {
  .note-list > li{
    font-size: 1.3rem;
  }
	
	
	
	.heading{
		height: 200px;
	}
	.heading > h1{
		font-size: 2.4rem;
	}
	
	
	.heading-text{
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.heading-text > p{
		text-align: center;
	}
}
@media screen and (max-width: 780px) {
  .note-list > li{
    font-size: 1.3rem;
  }
	
	
	
	
	.heading{
		height: 150px;
	}
	.heading > h1{
		font-size: 2.0rem;
	}
	
	
	.heading-text{
		font-size: 1.5rem;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.heading-text > p{
		text-align: center;
	}
}








/* ------- ANIMATION PARTS ---------------------------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 30px);
}

.fade-in-down {
  transform: translate(0, -30px);
}

.fade-in-left {
  transform: translate(-30px, 0);
}

.fade-in-right {
  transform: translate(30px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}