@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　student-day
 * 
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
#Page{
	overflow: inherit;
}
.page-ttl._type02 h1 .ja {
    line-height: 1.2;
}



/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* page-nav-area
-----------------------------------------------------------------*/
.page-nav-area{
	padding: 160px 0 80px;
}
.page-nav{
	justify-content: space-between;
	max-width: 765px;
  width: 100%;
	margin-inline: auto;
}
.page-nav li{
	max-width: 235px;
	width: calc((100% - 20px)/3);
}


/* student
-----------------------------------------------------------------*/
.student{
	position: relative;
	display: flex;
}
.student02{
	flex-direction: row-reverse;
}
.student .pic-area{
	width: 43.49%;
}
.student .pic-main{
	position:sticky;
	left: 0;
	top: 80px;
	
}
.student .cont-area{
	width: 56.51%;
}

/* intro */
.student .intro{
	padding: 160px 0;
	background: var(--green);	
}
.student .intro-inner{
	max-width: 670px;
	margin-inline: auto;
	padding: 0 20px;
}
.student .intro-hd{
	display: flex;
	align-items: center;
	margin-bottom: 70px;
}
.student .intro-hd .division{
	flex-shrink: 0;
	margin-right: 8%;
	padding: 30px 6% 20px;
	background: var(--light);
	border-radius: 10px;
	text-align: center;
	line-height: 1;
}
.student .intro-hd .division .ttl{
	margin-bottom: 15px;
	font-size:min(1.17vw,1.8rem);
}
.student .intro-hd .division .year{
	width: fit-content;
	padding: 8px 20px;
	border-radius: 100vmax;
	background: var(--green);	
	font-size:min(0.78vw,1.2rem);
}
.student .intro-hd  .name h2{
	margin-bottom: 20px;
	font-size:min(1.3vw,2rem);
	line-height: 1;
}
.student .intro-hd  .name h2 span{
	font-size:min(1.95vw,3rem);
	letter-spacing: .15em;
}
.student .intro-hd  .name p{
	font-size:min(0.85vw,1.3rem);
}
.student .intro h3{
	margin-bottom: 40px;
	font-size:min(2.28vw,3.5rem);
	 line-height: 1.5;
}
.student .intro .txt{
	font-size:min(1.04vw,1.6rem);
	text-align: justify;
}


/* one-day */
.student .one-day{
	padding: 160px 20px;
	text-align: center;
	background: url(../img/campuslife/student-day/txt_schedule.svg) no-repeat right top;
	background-size: 72px auto;
}
.student .one-day h3{
	margin-bottom: 80px;
	line-height: 1;
	text-transform: uppercase;
}
.student .one-day h3 small{
	display: block;
	margin-bottom: 15px;
	font-size:min(1.04vw,1.6rem);
}
.student .one-day h3 span{
	display: block;
	font-size:min(2.47vw,3.8rem);
}


/* student-cont */
.student-cont{
	padding: 160px 0;
	background: var(--beige);
}
.student-cont dl{
	max-width: 630px;
	margin: 0 auto 100px;
}
.student-cont dl > div{
	padding: 50px 7% 50px;
	background: var(--light);
	border-radius: 10px;
}
.student-cont dl > div:nth-child(n+2){
	margin-top: 50px;
}
.student-cont dl dt{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 20px;
}
.student-cont dl dt .ttl-dot{
	font-size:min(1.5vw,2.3rem);
}
.student-cont dl dt .ttl-dot::before{
	transform: translateY(-4px);
	color: var(--green);
}
.student-cont dl dt small{
	text-transform: uppercase;
	color: var(--green);
	font-size:min(1.04vw,1.6rem);
}
.student-cont .pic-sub{
	position: relative;
	width: fit-content;
	margin-inline: auto;	
}
.student-cont .pic-sub::before{
	position: absolute;
	left: -0.33vw;
	top: 0;
	transform: scale(.98, .98) rotate(-5deg);
	display: block;
	width: 103%;
	height: 100%;
	border-radius: 10px;
	content: "";
	background: var(--green);	
}
.student-cont .pic-sub span{
	position: relative;
}




















/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#Page{
		overflow: hidden;
	}


/* page-nav-area
-----------------------------------------------------------------*/
  .page-nav-area{
    padding: 20px 0 80px;
  }
  .page-nav{
    flex-wrap: wrap;
  }
  .page-nav li{
    max-width: none;
    width: calc(50% - 10px);
  }
  .page-nav li:nth-child(n+3){
    margin-top: 20px; 
  }
	.page-nav a .symbol::after {
    margin-left: 0;
	}


/* student
-----------------------------------------------------------------*/
	.student{
		display: block;
	}
	.student .pic-area{
		width: 100%;
	}
	.student .pic-main{
		position: static;
	}
	.student .cont-area{
		width: 100%;
	}

/* intro */
	.student .intro{
		padding: 80px 0;
	}
	.student .intro-inner{
		max-width: 670px;
		margin-inline: auto;
		padding: 0 20px;
	}
	.student .intro-hd{
		display: block;
		margin-bottom: 40px;
		text-align: center;
	}
	.student .intro-hd .division{
		width: 180px;
		margin: 0 auto 25px;
		padding: 30px 5px 20px;
	}
	.student .intro-hd .division .ttl{
		font-size: 1.8rem;
	}
	.student .intro-hd .division .year{
		margin-inline: auto;
		font-size: 1.1rem;
	}
	.student .intro-hd  .name h2{
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.student .intro-hd  .name h2 span{
		font-size: 2.7rem;
	}
	.student .intro-hd  .name p{
		font-size: 1.3rem;
	}
	.student .intro h3{
		margin-bottom: 30px;
		font-size: 2.4rem;
	}
	.student .intro .txt{
		font-size: 1.4rem;
	}


/* one-day */
	.student .one-day{
		padding: 80px 10px;
		background: none;
	}
	.student .one-day h3{
		margin-bottom: 50px;
	}
	.student .one-day h3 small{
		margin-bottom: 10px;
		font-size: 1.4rem;
	}
	.student .one-day h3 span{
		font-size: 2.8rem;
	}


/* student-cont */
	.student-cont{
		padding: 80px 0;
	}
	.student-cont dl{
		max-width: none;
		margin: 0 auto 40px;
	}
	.student-cont dl > div{
		padding: 30px 20px 40px;
	}
	.student-cont dl > div:nth-child(n+2){
		margin-top: 30px;
	}
	.student-cont dl dt{
		display: block;
		margin-bottom: 25px;
	}
	.student-cont dl dt .ttl-dot{
		font-size: 1.8rem;
	}
	.student-cont dl dt .ttl-dot::before{
		margin-right: 5px;
		transform: translateY(0) scale(.8);
		line-height: 2.2;
	}
	.student-cont dl dt small{
		display: block;
		margin-bottom: 20px;
		font-size: 1.4rem;
		text-align: right;
	}
	.student-cont dl dd{
		font-size: 1.4rem;
		text-align: justify;
	}



}