@charset "UTF-8";

/*common template
--------------------------------------*/
/* var */ :root {
  --color-primary: #14126E;
  --color-secondary: #394297;
  --text-base: 16px;
}
li,ol {
	list-style: none;
}
.flex {
	display:flex;
}
img {
	width:100%;
}
.space-between {
	justify-content:space-between;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px
}
.mt30 {
	margin-top: 30px
}
.mt40 {
	margin-top: 40px
}
.mt50 {
	margin-top: 50px
}
.mb10 {
	margin-bottom: 10px;
}
.mb10 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}
.ml30 {
	margin-left: 30px;
}
.ml40 {
	margin-left: 40px;
}
.ml50 {
	margin-left: 50px;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mr30 {
	margin-right: 30px;
}
.mr40 {
	margin-right: 40px;
}
.mr50 {
	margin-right: 50px;
}
.text-right {
	text-align:right;
}
.clear {
	clear: both;
}
/*eCAPTCHAv3のバッジ表示*/
.grecaptcha-badge{
	/*visibility: hidden;*/
	bottom: 100px  !important;
}
.sp, .tb {
	display:none;
}

html {
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background-color: #fff;
	background-position: center top;
}
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	line-height: 1;
	word-break: break-all;
	position:relative;
}
.container {
	overflow:hidden;
}
/*フェードアニメーション*/
.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.8s;
}
.delay-3 {
	animation-delay: 1.3s;
}
.delay-4 {
	animation-delay: 1.8s;
}
.delay-5 {
	animation-delay: 2.3s;
}

/*
*コンテンツ内のフェードイン 
*/
.con_fade {
	opacity: 0;
	transition: all 1s ease-out;
	
}
.fade-up {
	transform: translateY(20px);
	/*animation: fadeIn-UP 1s ease forwards;*/
}
.fade-left {
	transform: translateX(-30px);
	/*animation: fadeIn-Left 1s ease forwards;*/
}
.fade-right {
	transform: translateX(30px);
	/*animation: fadeIn-Right 1s ease forwards;*/
}
.fade-down {
	transform: translateY(-20px);
	/*animation: fadeIn-Right 1s ease forwards;*/
}
.scrollin {
	opacity: 1 !important;
    transform: translate(0, 0) !important;
	/*animation: fadeIn 1s ease forwards;*/
}

@keyframes fadeIn-UP {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn-Right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn-Left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-In {
  to {
	  opacity: 1;
	  transform: translateX(0);
  }
}
.container.no-anim * {
	animation: none !important;
	transition: none !important;
}

/*.fade-in.in-view {
	opacity: 1;
	transform: translateY(0);
}*/


/*
* header template
*/

header {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:1000;
	box-shadow: 0px 1px 7px rgb(50,50,50,0.3);
}
.header.on{
	background: linear-gradient(rgba(255, 255, 255, 1),70%,rgba(255, 255, 255, 0.9));
	backdrop-filter: blur(3px);
}
.header_wrap {
	max-width:1240px;
	padding: 20px 20px 0px;
	margin: 0 auto;
}
.header_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_btn{
	display:flex;
	align-items: center;
}
.header_btn .contact_btn a {
	display:block;
	color: #fff;
	text-align: center;
}
.header_btn a p {
	padding: 0.5em 3em;
	border-radius:30px;
	font-size:16px;
}
.header_btn a .hd_btn_contact {
	background: rgba(94, 188, 123, 1);
	margin-right:10px;
	transition: 0.4s;
}
.header_btn a .hd_btn_contact:hover{
	background: #179243;
}
.header_btn .sns_btn {
	margin-right: 20px;
}
.header_btn a .hd_btn_sns {
	padding: 0.5em 3em;
	border-radius:30px;
	font-size:16px;
	position:relative;
	border:solid 1px #179243;
}
.header_btn a:hover .hd_btn_sns {
	background:#179243;
}
.header_btn .sns_btn a {
	display:block;
	text-align:center;
	color:#179243;
	font-weight: 700;
	transition: 0.4s;
}
.header_btn .sns_btn a:hover {
	color:#fff;
}

.header_btn .sns_btn a i {
	font-size:1.5em;
	padding-right:5px;
}
nav.g_nav > ul {
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	padding: 15px 0 0;
	align-items:stretch;
	height:75px;
}
nav.g_nav > ul > li {
	font-size: 13.5px;
	font-weight: 600;
	list-style:none;
	width: calc(100% / 9);
	text-align: center;
	padding: 0 0;
	display: flex;
	justify-content: center;
	position: relative;
	align-items:center;
}

nav.g_nav > ul > li.current::after {
	position:absolute;
	left:0;
	bottom: 0px;
	content:"";
	width: 100%;
	border-bottom: 4px solid #169243;
}

nav.g_nav > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	transition:all .3s;
	height: 100%;
	position:relative;
}
nav.g_nav > ul > li > a::after {
	position:absolute;
	left:0;
	bottom: 0;
	content:"";
	width: 0%;
	height:4px;
	transition:all .5s;
	background: #169243;
	opacity: 0;
}
nav.g_nav > ul > li > a:hover::after {
	opacity: 1;
	width: 100%;
}

nav ul li.has-child {
	position:relative;
}
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:10px;
	top:50%;
	width:6px;
	height:6px;
	border-top: 2px solid #14126E;
    border-right:2px solid #14126E;
    transform: rotate(135deg) translatey(50%);
}
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:60px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(255,255,255,0.95);
	backdrop-filter: blur(3px);
	width:170%;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
	text-align:left;
	box-shadow:0 0 3px rgb(0,0,0,0.3);
}
.js-header nav li.has-child ul{
	top:40px;
	width: 280%;
	/*border-left: solid 1px rgba(20,16,110,0.5);
	border-right: solid 1px rgba(20,16,110,0.5);
	border-bottom: solid 1px rgba(20,16,110,0.5);*/
	box-shadow:0 0 3px rgb(0,0,0,0.3);
}
nav.g_nav li.has-child.randa ul {
	width: 100px;
}
nav li.has-child ul li {
	border-bottom:dotted 1px #aaa;
	line-height:1;
	list-style:none;
	padding: 0.3rem 0.5rem;
	transition: 0.3s;
}
nav li.has-child ul li a {
	color:#000;
}
nav li.has-child ul li.has-child {
	padding-left:30px;
}
nav li.has-child ul li.has-child ul {
	top:40px;
} 
nav li.has-child ul li.has-child li a {
	color:#000;
}
nav li.has-child ul li.has-child li a:hover {
	color:#fff;
}
nav li.has-child ul li:last-child {
	border-bottom:none;
}
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
nav li.has-child ul li:hover {
	background:#169243;
}
nav li.has-child ul li:hover a {
	color:#fff;
}
nav li.has-child ul li span {
	padding-left:0.3rem;
	font-size:0.9em;
	color:rgba(94, 188, 123, 1);
}
nav.g_nav ul li:last-child {
	border-right: none;
}
nav ul ul {
	display: block;
}

.js-header {
	display: none;
	position: fixed;
	top: 0 ;
	left: 0;
	z-index: 1000;
	background: linear-gradient(rgba(255, 255, 255, 1),80%,rgba(255, 255, 255, 0.5));
	backdrop-filter: blur(3px);
	width: 100%;
	box-shadow: 0 2px 3px #efefef;
}
.js-header .header_wrap {
	display:flex;
	justify-content: space-between;
	width: 1220px;
	padding: 10px;
}
.js-header nav.g_nav {
	width: 100%;
}
.js-header nav.g_nav > ul {
	height: 40px;
}

.js-header nav.g_nav ul {
	padding-top: 0;
	align-items: center;
}
.js-header nav.g_nav > ul > li {
	font-size:12px;
	width: calc( 100% / 11 );
}
.js-header nav.g_nav > ul > li.current::after {
    bottom: -10px;
}

.js-header nav ul li.has-child::before{
	top:8px;
}
.js-header nav li.has-child ul li a:hover {
	color:#fff;
}
.js-header .header_btn {
	display: flex;
	flex-flow: column;
}
.js-header .header_btn a .hd_btn_contact {
	margin-top: 5px;
	margin-right: 0;
}
.js-header .header_btn a p {
	padding:0.3em 0.5em;
}
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: #179243;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.8rem;
	transition:all 0.7s;
	border:solid 1px #cdcdcd;
	border-radius: 50%;
}

#page-top a:hover{
	width: 60px;
	height: 60px;
	background: #fff;
	border:solid 1px #179243;
	color: #179243;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 30px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
.main {
	width: 100%;
	padding: 0px 0px 0 0px;
	/*overflow: hidden;*/
}

/*
*footer 
*/
footer.footer {
	font-family:"BIZ+UDGothic";
	padding: 120px 0 30px;
	background: #FFFFFF;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(206, 236, 215, 0.84) 100%);
}
footer .footer_wrap {
	width:100%;
	max-width: 1240px;
	margin: 0 auto;
}
footer .footer_flex {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
footer .footer_flex .div_logo {
	width: 300px;
	margin-bottom: 20px;
}
footer .footer_flex .college_logo {
	width: 140px;
	margin-bottom: 30px;
}
footer .footer_flex .address {
	font-size: 12px;
}
footer .footer_flex .address span {
	font-size: 0.9em;
	padding-right: 1.5rem;
}
footer .footer_flex .address .text {
	margin-bottom: 10px;
}
footer .btn_wrap {
	margin-top:10px;
	margin-bottom: 20px;
	display: flex;
	align-items:center;
	justify-content:space-between;
}
footer .contact {
	font-size:14px;
}
footer .contact p {
	display:inline-block;
}
footer .contact p a {
	display:block;
	color:#fff;
	background: rgba(94, 188, 123, 1);
	border-radius:20px;
	padding: 5px 20px;
	transition: 0.5s;
	border: 1px solid rgba(94, 188, 123, 1);
}
footer .contact p a:hover {
	background: #179243;
	display:block;
}
footer .sns_btn a {
	display:block;
	color:#179243;
	border-radius:20px;
	padding: 5px 20px;
	transition: 0.5s;
	border: 1px solid #179243;
	background:#fff;
}
footer .sns_btn a:hover {
	color:#fff;
	background:#179243;
}

footer .privacy {
	font-size: 12px;
	display:flex;
	justify-content: flex-start;
}
footer .privacy div:first-child {
	margin-right: 30px;
}
footer .privacy a {
	color: #000;
	font-weight: 600;
	transition: 0.5s;
}
footer .privacy a:hover {
	color:#179243;
}
footer .ft_right {
	font-size: 14px;
	display: flex;
	justify-content:space-between;
}
footer .ft_right div:last-child{
	margin-left:70px;
}
footer .ft_right p {
	margin-bottom: 20px;
	padding-left: 20px;
	position:relative;
}
footer .ft_right p a {
	color:#000;
	transition:0.5s;
}
footer .ft_right p a:hover {
	color: #179243;
}
footer .ft_right p::before {
	position:absolute;
	top:11px;
	left:0;
	content:"";
	width: 10px;
	height:2px;
	background:#179243;
	transition:0.5s;
}
footer .ft_right p:hover::before {
	left:7px;
}
footer .ft_bottom {
	font-size: 10px;
}
footer .ft_bottom .ft_bt_wrap {
	padding: 10px 20px;
}
@media screen and (max-width: 1200px) {
	.js-header .header_wrap {
		width:100%;
	}
	nav li.has-child.randa ul{
		left:0px;
	}
	
}
@media screen and (max-width: 1024px) {
	
}

@media screen and (max-width: 999px) {
	.tb{
		display:block;
	}
	.pc {
		display:none;
	}
	.header_wrap {
		width:calc(100% - 20px);
		padding: 20px 0px 10px;
		margin: 0 auto;
	}
	.js-header .header_wrap {
		width: calc(100% - 20px);
		padding: 10px 0;
	}
}
@media screen and (max-width: 960px) {
	
}

@media screen and (max-width: 919px) {
	.header_top {
		width: calc(100% - 60px);
		padding-right:60px;
	}
	header {
		position:fixed;
		z-index:999;
	}
	.header_wrap {
		padding: 5px 0;
	}
	.header_content h1{
		width:80%;
	}
	.header_btn {
		display:none;
	}
	nav.g_nav {
		display:none;
	}
	.js-header .header_wrap {
		display:none;
	}
	/*ハンバーガーメニュー*/
	.sp_nav .nav{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		/*height: 100vh;*/
		height: 100%;
		/*background: url(../img/common/bg_sp_menu.png);*/
		background: #CEECD7;
		background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(249, 253, 244, 1) 50%, rgba(206, 236, 215, 1) 100%);
		/*display:flex;*/
		display:block;
		/*width: 980px;*/
		width: 100%;
		padding: 10px;	
		background-repeat: no-repeat;
		background-position: center center;
		color: #179243;
		/*justify-content: center;
		align-items: flex-start;*/
		z-index: 999;
		/* 初期：非表示 */
		visibility: hidden;
		opacity: 0;
		/* ふわっと表示 */
		transition: 0.5s ease-in-out;
	}
	.sp_nav .drawer {
		vertical-align: baseline;
		max-width: 820px;
		margin: 0 auto;
		line-height: 1.4;
		font-size: .9em;
		padding: 0em 1em 2em 1em;
	}
	.sp_nav .sp_logo {
		width:40%;
	}
	.sp_nav .sp_logo img {
		width:100%;
	}
	.sp_nav .navi_line {
		border-top: 1px solid #179243;
		padding: 0.4em 0.6em;
	}
	.sp_nav .parent-menu {
		font-size:1em;
	}
	.sp_nav .navi_flex {
		display:flex;
	}
	.sp_nav .navi_flex .parent-menu{
		width: 37%;
	}
	.sp_nav .navi_flex .child-menu {
		width: 63%;
	}
	.sp_nav .navi_flex .child-menu li {
		margin-bottom: 0.3em;
		font-size:0.9em;
	}
	.sp_nav .nav a{
		color: #179243;
	}
	/* ナビゲーションボタン（開く） */
	
	#navbtn{
		position: fixed;
		top: 15px;
		right: 15px;
		padding: 0;
		outline: none;
		border: none;
		background: none;
		width: 30px;
		height: 20px;
		cursor: pointer;
		z-index:999;
	}
	#navbtn::before,#navbtn::after{
		content : '';
		display: block;
		height: 1px;
		background-color: #14126E;
		transform: translateY(10px);
		transition: 0.3s ease-in-out;
		pointer-events: none;
	}
	#navbtn::before{
		transform: translateY(-10px);
		box-shadow: 0 10px #14126E;
	}
	/* ナビゲーションボタン（閉じる） */
	.open #navbtn{
		z-index: 9999;
	}
	.open #navbtn::before{
		transform: rotate(-45deg);
		box-shadow: none;
		background-color: #179243;
	}
	.open #navbtn::after{
		transform: rotate(45deg);
		box-shadow: none;
		background-color: #179243;
	}
	/* ナビゲーションメニュー 開いた時*/
	.open .nav{
		visibility: visible;
		opacity: 1;
		width:100%;
		overflow-y:scroll;
	}
	.footer_wrap::after {
		display:block;
		content:"";
		width:48%;
	}
	.ft_content {
		width: 48%;
	}
}
@media(min-width: 920px){
  /* PCではボタン非表示 */
  #navbtn{
    display:none;
  }
  /* メニューを右に寄せる */
  .sp_nav .nav{
    /* 右寄せ */
	 display: none;
  }
}

@media screen and (max-width: 820px) {
	
}
@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 680px) {
	.sp {
		display:block;
	}
	.tb {
		display:none;
	}
	.js-header .header_wrap{
		display:none;
	}
	footer.footer {
		padding:80px 0 30px
	}
	footer .footer_flex {
		flex-flow: column;
	}
	footer .ft_right {
		display:none;
	}
	footer .btn_wrap {
		flex-flow: column;
		align-items: flex-start;
	}
	footer .contact {
		margin-bottom: 1rem;
	}
	footer .ft_bottom .ft_bt_wrap {
		text-align:center;
	}
}


@media screen and (max-width: 560px) {
	
}

@media screen and (max-width: 480px) {
	.wrap {
		background-size: auto 980px;
		background-position: center -30px;
	}
	#header{
		padding-left: 0;
	}
	#page-top {
		right: 10px;
		bottom:10px;
	}
	.footer_wrap::after {
		display:block;
		content:"";
		width:100%;
	}
	.ft_content {
		padding: 1rem 0;
		width: 100%;
	}
}
@media screen and (max-width: 428px) {
	#navbtn {
		top:10px;
	}
}
@media screen and (max-width: 375px) {
	
}