@charset "UTF-8";


/*
//header 300
//side 300
//sidefixed 400
//hum 601
//nav 600
//overlaybg 599
*/


.grecaptcha-badge { visibility: hidden; }
.gr {
	font-size: 1rem;
	color: #333;
	padding: 80px 0 20px;
}


html {
/*	width: 100%;
	height: 100%;
	overflow: auto;*/
	font-size: 62.5%;
}

body {
	font-family: 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, 'Hiragino Sans','Hiragino Kaku Gothic ProN', '游ゴシック体',"segoe ui",'メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
	font-size: 1.6rem;
	font-weight: lighter;
	line-height: 1.6;
	position: relative;
	/* overflow: hidden;
	min-height: 100vh; */
}

a img {
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}

a:hover img {
	opacity: .8;
}

img {
	vertical-align: bottom;
}

p {
	padding-bottom: 1em;
}

.ctr {
	text-align: center;
}

.brsp {
	display: none;
}

.brpc {
	display: block;
}


#sidefixed {
	position: fixed;
	top: 144px;
	right: 0;
	width: 94px;
	z-index: 400;
}
#sidefixed img {
	width: 100%;
}




header {
	position: relative;
	position: sticky;
	top: 0;
	width: 100%;
	transition: all 0.3s ease-out;
	/* box-shadow: 0px 3px 20px -10px rgba(0,0,0,0.6); */
	z-index: 300;
}

header #hideline {
	padding: 15px 30px;
	background: #82CAE5;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

header #hideline a {
	font-size: 1.3rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
}
header #hideline a:hover {
	text-decoration: underline;
}

header h1 {
	color: #fff;
	font-size: 1.3rem;
}

header #hflex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: wrap;
	width: 100%;
	height: 94px;
	background: rgba(255,255,255,.9);
}

header #hflex #logo {
	width: 250px;
	padding-left: 30px;
}
header #hflex #spmenu {
	display: none;
}
header #hflex #pcmenu {
	display: flex;
	padding-right: 80px;
}
header #hflex #pcmenu li {
	padding-right: 40px;
}
header #hflex #pcmenu a {
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	color: #82CAE5;
	position: relative;
}
header #hflex #pcmenu a:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	content: '';
	width: 100%;
	height: 2px;
	transform: scale(0,1);
	transform-origin: left top;
	background: #82CAE5;
	transition: all 0.2s ease-out;
}
header #hflex #pcmenu a:hover:after {
	transform: scale(1,1);
}
#humb {
	position: fixed;
	top: 50px;
	right: 0;
	z-index: 601;
}
#humb div {
	cursor: pointer;
	width: 94px;
	height: 94px;
	background: #000;
	position: relative;
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}
#humb div:hover {
	background: #fff;
}
#humb span {
	position: absolute;
	background: #fff;
	display: block;
	width: 40px;
	height: 1px;
	left: 50%;
	transform: translate(-50%, 0);
}
#humb div span:nth-child(1) {
	top: 30px;
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}
#humb div span:nth-child(2) {
	top: 44px;
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}
#humb div span:nth-child(3) {
	top: 58px;
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}
#humb.close div span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(-140deg);
	top: 50%;
}
#humb.close div span:nth-child(2) {
	opacity: 0;
}
#humb.close div span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(140deg);
	top: 50%;
}
#humb div:hover span {
	background: #000;
}











/*nav*/
#nav {
	width: 100%;
	position: fixed;
	background: rgba(51,51,51,.9);
	padding: 94px 0 20px 0;
	color: #333;
	top: 50px;
	right: 0;
	height: calc(100vh - 50px);
	max-height: 100vh;
	transform: translateX(100%);
	transition: all 300ms ease-in-out;
	/* margin-top: 50px; */
	z-index: 600;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}
#nav .inner {
	width: 1100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
	position: relative;
}

#nav a {
	color: #fff;
}

#nav .inner .sns {
	width: 180px;
	display: flex !important;
	margin-bottom: 0;
}
#nav .inner .sns li:first-child {
	border: none;
}
#nav .inner .sns li {
	width: 50px;
}
.op #nav {
	transform: translateX(0);
}
.overlaybg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	visibility: hidden;
	transition: 400ms ease;
	transition-property: opacity, visibility;
	z-index: 599;
	margin-top: 50px;
}
.op .overlaybg {
	visibility: visible;
	opacity: 0;
}




#footernavi {
	background: #333;
	padding-top: 20px;
}
#footernavi ul,
#nav ul {
	text-align: center;
	display: flex;
	justify-content: space-between;
	width: 880px;
	margin: 0 auto;
	margin-bottom: 40px;
}
#footernavi .inner {
	width: 1100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
	border-top: 1px solid #fff;
	padding: 40px 0;
}

#footernavi .inner ul,
#nav .inner ul {
	width: calc(100% / 3 - 20px);
	text-align: left;
	display: block;
	color: #fff;
}
#footernavi .inner ul li,
#nav .inner ul li {
	font-size: 1.5rem;
	padding: 8px 0;
}
#footernavi .inner ul li:first-child,
#footernavi .inner ul li.b,
#nav .inner ul li:first-child,
#nav .inner ul li.b {
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid #fff;
}
#footernavi .inner ul a,
#nav .inner ul a {
	color: #fff;
	text-decoration: none;
}
#footernavi .inner ul a:hover,
#nav .inner ul a:hover {
	text-decoration: underline;
}

footer {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 20px 0 100px 0;
	font-size: 1.4rem;
}

footer dl {
	width: 1100px;
	margin: 0 auto 20px;
	padding: 20px 0;
	font-size: 1.4rem;
	border-bottom: 1px solid #fff;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
footer dl dt h2 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}
footer dl dt h2 span {
	font-size: 1.6rem;
}
footer dl dt a {
	color: #fff;
}
footer dl dd ul {
	display: flex;
	justify-content: space-between;
}

footer dl dd ul li {
	width: 40px;
	margin-left: 20px;
}




.bluegrabg {
	background: linear-gradient(90deg, #00A6DF 0%, #00E7F6 100%);
	padding: 25px 0 70px;
	margin: 0 calc(49.3% - 50vw);
	margin-bottom: 100px;
	width: 100vw;
}
.bluegrabg .cvarea {
	margin-bottom: 0;
}
.cvarea {
	text-align: center;
	margin-bottom: 100px;
}
.cvarea ul {
	display: flex;
	justify-content: center;
}
.cvarea ul li {
	margin: 0 40px;
}

.pdfarea {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
.pdfarea ul {
	display: flex;
	justify-content: center;
}
.pdfarea ul li {
	margin: 0 40px;
}
.pdfarea ul li a {
	font-size: 1.8rem;
	font-weight: bold;
	display: block;
	padding: 20px 30px;
	border-radius: 10px;
	color: #fff;
	background: linear-gradient(90deg, #0CE4F4 0%, #29A4DB 100%);
	width: 400px;
	box-sizing: border-box;
}
.pdfarea ul li:last-child a {
	color: #000;
	background: linear-gradient(90deg, #ff0 0%, #D6FF00 100%);
}
.pdfarea ul li a:hover {
	opacity: .8;
}


/* day night */
#main {
	border-top: 1px solid #82CAE5;
	border-bottom: 1px solid #82CAE5;
	padding: 0 0 180px;
	position: relative;
	margin-bottom: 20px;
}
#main h2 {
	font-size: 3rem;
	color: #82CAE5;
}
#main h2 span {
	font-size: 1.6rem;
	font-weight: normal;
	display: block;
	margin-bottom: 10px;
}
/* 学校案内系 */
#main2 {
	border-top: 1px solid #82CAE5;
	padding: 80px 0 0;
	position: relative;
	margin-bottom: 20px;
}
#main2 h2 {
	font-size: 3rem;
	color: #82CAE5;
}
#main2 h2 span {
	font-size: 1.6rem;
	font-weight: normal;
	display: block;
	margin-bottom: 10px;
}
#main2 .mainimg {
	padding-top: 80px;
	margin: 0 calc(49.3% - 50vw);
	width: 100vw;
}
#main2 .mainimg img {
	width: 100%;
}

/*　入試案内系　*/
#main3 {
	border-top: 1px solid #82CAE5;
	position: relative;
	margin-bottom: 20px;
	width: 1100px;
	margin: 0 auto;
	border-bottom: none;
	padding: 80px 0 40px;
}

#main3 h2 {
	font-size: 3rem;
	color: #82CAE5;
}
#main3 h2 span {
	font-size: 1.6rem;
	font-weight: normal;
	display: block;
	margin-bottom: 10px;
}

/*　フォーム系　*/
#main4 {
	border-top: 1px solid #82CAE5;
	border-bottom: 1px solid #82CAE5;
	position: relative;
	margin: 0 auto;
	margin-bottom: 80px;
	width: 1100px;
	padding: 80px 0;
}

#main4 h2 {
	font-size: 3rem;
	color: #82CAE5;
}
#main4 h2 span {
	font-size: 1.6rem;
	font-weight: normal;
	display: block;
	margin-bottom: 10px;
}



/*ぱんくず*/
.aioseo-breadcrumbs {
	width: 1100px;
	margin: 0 auto 80px auto;
	font-size: 1.3rem;
}




/* 各カテゴリーの下のメニュー */

.catbtmlink {
	background: #e6f5fa;
	padding: 40px 0 55px;
}
.catbtmlink .inner {
	width: 1100px;
	margin-inline: auto;
}
.catbtmlink h3 span {
	font-size: 1.6rem;
	display: block;
}
.catbtmlink h3 {
	color: #81CDE4;
	font-size: 3rem;
	margin-bottom: 40px;
}
.catbtmlink a {
	display: block;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	padding: 20px 0;
	color: #81CDE4;
}
.catbtmlink a:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 9px;
	border-color: transparent transparent transparent #E76110;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.catbtmlink ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.catbtmlink li {
	width: 520px;
	border-bottom: 1px solid #999;
	position: relative;
}
.catbtmlink li:first-child,
.catbtmlink li:nth-child(2) {
	border-top: 1px solid #999;
}
.catbtmlink li:before {
	content: "";
	position: absolute;
	width: 5%;
	border-top: 1px solid #000;
	top: -1px;
	right: 0;
}
.catbtmlink li:after {
	content: "";
	position: absolute;
	width: 5%;
	border-bottom: 1px solid #000;
	bottom: -1px;
	right: 0;
}
.catbtmlink img {
	width: 180px;
	border-radius: 10px;
	vertical-align: middle;
	margin-right: 10px;
}



/* 学科 */

#gcourse {
	margin-bottom: 100px;
	position: relative;
}

#gcourse .inner {
	width: calc(100% - 16rem);
	margin: 0 auto;
}

#gcourse .dclet {
	position: absolute;
	top: 0;
	right: 0;
	width: 510px;
}

#gcourse h2 {
	font-size: 3rem;
	color: #82CAE5;
	width: calc(100% - 8rem);
	margin: 0 0 0 auto;
	padding: 50px 0;
}

#gcourse h2 span {
	font-size: 1.6rem;
	display: block;
}

#gcourse ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#gcourse ul li {
	width: 48%;
	border-bottom: 1px solid #999;
	position: relative;
}
#gcourse ul li:after {
	content: "";
	position: absolute;
	width: 16%;
	border-bottom: 1px solid #000;
	bottom: -1px;
	right: 0;
}
#gcourse ul li a {
	display: block;
	text-decoration: none;
}
#gcourse ul li img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
}

#gcourse h3 {
	font-size: 2.5rem;
	color: #82CAE5;
	margin-bottom: 20px;
}

#gcourse h3 span {
	font-size: 1.6rem;
	display: inline-block;
	margin-left: 2em;
}

#gcourse h4 {
	font-size: 2rem;
	line-height: 1.75;
	color: #82CAE5;
	margin-bottom: 20px;
}

#gcourse h4+p {
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	color: #333;
}



/* 学生の声 */


#voice {
	margin-bottom: 100px;
	position: relative;
	overflow: hidden;
}


#voicesplider .splide__track {
	overflow: visible;
}
#voice .vclet {
	position: absolute;
	top: 0;
	right: 60px;
	width: 285px;
}

#voice h2 {
	font-size: 3rem;
	color: #82CAE5;
	width: calc(100% - 8rem);
	margin: 0 0 0 auto;
	padding: 50px 0;
}

#voice h2 span {
	font-size: 1.6rem;
	display: block;
}

#voice #voicesplider, .voicebox #voicesplider {
	padding: 0 40px;
}

#voice #voicesplider a, .voicebox a {
	display: block;
	text-decoration: none;
}

#voice #voicesplider img, .voicebox img {
	border-radius: 10px;
	margin-bottom: 20px;
}

#voice #voicesplider h3, .voicebox #voiceday_splider h3,
 .voicebox #voicenight_splider h3 {
	font-size: 2rem;
	line-height: 1.75;
	color: #82CAE5;
	margin-bottom: 20px;
}

#voice #voicesplider h3+p, .voicebox #voiceday_splider h3+p,
.voicebox #voicenight_splider h3+p {
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	color: #333;
}

.voicebox .splide.is-initialized:not(.is-active) .splide__list {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
}

.content {
	display: flex;
}
.content #leftmenu {
	background: linear-gradient(90deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
	width: 30%;
	padding: 40px 20px 20px 0;
	box-sizing: border-box;
}
.content #leftmenu.nonebg {
	background: none;
}

.content #leftmenu ul {
	position: sticky;
	top: 180px;
	width: 200px;
	margin-left: auto;
	font-size: 1.4rem;
	font-weight: bold;
}

.content #leftmenu li {
	margin-bottom: 26px;
}

.content #leftmenu ul a {
	color: #fff;
	text-decoration: none;
}
.content #leftmenu ul a:before {
	content: '◯ ';
}
.content #leftmenu ul a.is-active:before {
	content: '● ';
}

.rcontent {
	width: 70%;
	padding-left: 40px;
}

.rcontent .inner {
	width: 855px;
	margin-right: auto;
}

.rcontent table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 20px;
}
.rcontent table .textleft {
	text-align: left;
}
.rcontent table th,
.rcontent table td {
	border: 1px solid #acacac;
	font-feature-settings: "palt";
	padding: 5px 10px;
	text-align: center;
	font-size: 1.6rem;
}
.rcontent table th {
	background: #EBEBEB;
}

.rcontent h3 {
	font-size: 2.5rem;
	color: #81CDE4;
	font-feature-settings: "palt";
	margin-bottom: 30px;
}

.rcontent h4, .rcontent h5 {
	font-size: 1.8rem;
	color: #81CDE4;
	font-feature-settings: "palt";
	margin-top: 20px;
}

.rcontent p {
	font-size: 1.6rem;
	line-height: 2;
	font-feature-settings: "palt";
	text-align: justify;
}
.rcontent .fz14 {
	font-size: 1.4rem;
	line-height: 1.8;
}
 
.rcontent ol {
	list-style-type: decimal;
	padding-left: 2rem;
	margin-bottom: 20px;
}
.rcontent ol li {
	line-height: 2
}

.tablebtn {
	display: flex;
	justify-content: space-between;
	font-size: 2rem;
	line-height: 2;
	font-weight: bold;
	text-align: center;
}
.tablebtn .bgrabtn {
	color: #fff;
	text-decoration: none;
	width: 400px;
	padding: 10px 20px;
	border-radius: 10px;
	background: linear-gradient(110deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
	box-sizing: border-box;
	display: block;
}
.tablebtn .bgrabtn span {
	font-size: 1.4rem;
}
.tablebtn .ograbtn{
	color: #fff;
	text-decoration: none;
	width: 400px;
	padding: 10px 20px;
	border-radius: 10px;
	background: linear-gradient(110deg, rgba(248,100,92,1) 0%, rgba(250,151,60,1) 100%);
	box-sizing: border-box;
	display: block;
	padding-top: 20px;
}
.tablebtn a {
	transition: 200ms ease-in-out;
}

.tablebtn a:hover {
	opacity: .8;
}

.grabox1, .grabox2, .grabox3, .grabox4, .normalbox {
	border-radius: 10px;
	padding: 5px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 30px;
}
.grabox1 {
	background: linear-gradient(90deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
}
.grabox2 {
	background: linear-gradient(90deg, rgba(240,140,30,1) 0%, rgba(255,238,0,1) 100%);
}
.grabox3 {
	background: linear-gradient(90deg, rgba(57,174,74,1) 0%, rgba(255,238,0,1) 100%);
}
.grabox4 {
	background: linear-gradient(90deg, rgba(41,164,219,1) 0%, rgba(34,174,115,1) 100%);
}
.normalbox {
	background: #81CDE4;
}
.grabox1 .inner, .grabox2 .inner, .grabox3 .inner,
.grabox4 .inner, .normalbox .inner {
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	box-sizing: border-box;
	width: 100%;
}
.normalbox .inner {
	line-height: 2;
}
.grabox1 h4, .grabox2 h4, .grabox3 h4, .grabox4 h4, .normalbox h4 {
	color: #fff;
	font-size: 2.5rem;
	margin: 0;
	padding: 10px;
}
.grabox1 h4 span, .grabox2 h4 span, .grabox3 h4 span, .grabox4 h4 span, .normalbox h4 span {
	display: inline-block;
	border-right: 1px solid #fff;
	padding-right: 10px;
	margin-right: 10px;;
}

.grabox1 dl, .grabox2 dl, .grabox3 dl, .grabox4 dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.grabox1 dt, .grabox2 dt, .grabox3 dt, .grabox4 dt {
	width: 10%;
	font-weight: bold;
	margin-bottom: 5px;
}
.grabox1 dd, .grabox2 dd, .grabox3 dd, .grabox4 dd {
	width: 90%;
	margin-bottom: 5px;
}
.grabox1 dd strong, .grabox2 dd strong,
.grabox3 dd strong, .grabox4 dd strong {
	color: #f00;
}
.grabox1 .fz14, .grabox2 .fz14, .grabox3 .fz14, .grabox4 .fz14 {
	padding-bottom: 0;
	margin-top: 20px;
}

#step1, #step2, #step3, #step4, #step5,
#step6, #step7, #step8, #step9, #step10 {
	border-top: 1px solid #81CDE4;
	position: relative;
	padding: 20px 0 60px 0;
}

#step1:after, #step2:after, #step3:after, #step4:after,
#step5:after, #step6:after, #step7:after, #step8:after,
#step9:after, #step10:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 110px;
	height: 5px;
	background: linear-gradient(90deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
}





#base {
	/* padding-bottom: 100px; */
}


#tindexmenu {
	width: 1100px;
	margin: 0 auto;
	border-top: 1px solid #81CDE4;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 20px;
}

#tindexmenu li {
	width: 520px;
}
#tindexmenu li a {
	display: block;
	text-decoration: none;
	font-size: 2.5rem;
	font-weight: bold;
	color: #81CDE4;
	padding: 40px 0 30px;
	border-bottom: 1px solid #999;
	position: relative;
	margin-bottom: 20px;
	transition: 200ms ease-in-out;
}
#tindexmenu li a:hover {
	background: #e6f5fa;
}

#tindexmenu li a:after {
	content: "";
	position: absolute;
	width: 8%;
	border-bottom: 1px solid #000;
	bottom: -1px;
	right: 0;
}
#tindexmenu li a span {
	color: #333;
	font-size: 2rem;
	margin-top: 15px;
	display: block;
	position: relative;
}
#tindexmenu li a span:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 9px;
	border-color: transparent transparent transparent #E76110;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto;
}


.rcontent .hs_graph {
	display: flex;
	margin: 20px 0 40px;
}
.rcontent .hs_graph li {
	margin-right: 20px;
}
.rcontent .hs_graph img {
	width: 230px;
}


.certification {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.certification h4 {
	margin-bottom: 10px;
}

.certification li {
	width: 45%;
}











/*/////////////////// SP ///////////////////*/
/*/////////////////// SP ///////////////////*/
/*/////////////////// SP ///////////////////*/
/*/////////////////// SP ///////////////////*/
/*/////////////////// SP ///////////////////*/
@media screen and (max-width: 768px) {




.brsp {
	display: block;
}

.brpc {
	display: none;
}




#sidefixed {
	display: none;
}

header {
	
}

header #hideline {
	display: none;
}

header #hflex {
	width: 100%;
	box-shadow: 0px 3px 20px -10px rgba(0,0,0,0.6);
	height: 52px;
}

header #hflex #logo {
	width: 125px;
	padding: 0 0 0 10px;
}

header #hflex #pcmenu {
	display: none;
}
header #hflex #spmenu {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
header #hflex #spmenu li {
	width: 52px;
	position: absolute;
}
header #hflex #spmenu li:nth-child(1) {
	right: 156px;
}
header #hflex #spmenu li:nth-child(2) {
	right: 104px;
}
header #hflex #spmenu li:nth-child(3) {
	right: 52px;
}
#humb {
	top: 0;
}
#humb div {
	cursor: pointer;
	width: 52px;
	height: 52px;
	background: #000;
	position: relative;
	/* transition: all 300ms cubic-bezier(0.2, 0.6, 0.3, 1); */
	transition: all 300ms ease-in-out;
}
#humb div:hover {
	background: #000;
}
#humb span {
	width: 22px;
}
#humb div span:nth-child(1) {
	top: 15px;
}
#humb div span:nth-child(2) {
	top: 25px;
}
#humb div span:nth-child(3) {
	top: 35px;
}
#humb div:hover span {
	background: #fff;
}





/*nav*/
#nav {
	width: 100%;
	padding: 10px 20px;
	box-sizing: border-box;
}

#nav .inner {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

#nav ul {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
}
#nav .inner ul {
	width: 100%;
}
#nav .inner ul li:first-child,
#nav .inner ul li.b {
	font-size: 2rem;
}


#nav .inner .sns {
	position: static;
	width: 100%;
	bottom: 0;
	right: 0;
	padding-bottom: 100px;
	justify-content: start;
}
#nav .inner .sns li {
	padding-right: 10px;
}

#footernavi {
	display: none;
}

footer {
	padding: 20px 0 50px 0;
	font-size: 1.3rem;
}

footer dl {
	width: 86.6667%;
	padding: 10px 0 30px;
	display: block;
}
footer dl dt {
	margin-bottom: 10px;
}
footer dl dt h2 {
	margin: 0 auto 10px;
}
footer dl dd ul {
	width: 160px;
}
footer dl dd ul li {
	width: 100%;
	margin-left: 0;
	margin-right: 10px;
}



.bluegrabg {
	padding: 15px 0 30px;
	margin: 0 calc(50% - 50vw);
	margin-bottom: 50px;
	width: 100vw;
}

.cvarea {
	text-align: center;
	margin-bottom: 50px;
}
.cvarea ul {
	display: block;
}
.cvarea ul li {
	margin: 10px 20px;
}


.pdfarea {
	margin-top: 25px;
	margin-bottom: 25px;
}
.pdfarea ul {
	display: block;
	width: 100%;
}
.pdfarea ul li {
	margin: 0;
	margin-bottom: 20px;
}
.pdfarea ul li a {
	padding: 16px 0;
	width: 100%;
}




#main {
	border-top: none;
	border-bottom: none;
	padding: 20px 0 20px;
	margin-bottom: 20px;
}
#main h2 span {
	font-size: 1rem;
	margin-bottom: 5px;
}

#main2 {
	border-top: none;
	padding: 20px 0 0;
}
#main2 h2 span {
	font-size: 1rem;
	margin-bottom: 5px;
}
#main2 .mainimg {
	padding-top: 40px;
	margin-bottom: 60px;
}
#main2 .mainimg img {
	width: 96%;
}


#main3 {
	width: 86%;
	border-top: none;
	padding: 20px 0 20px;
	margin: 0 auto 20px auto;
}
#main3 h2 span {
	font-size: 1rem;
	margin-bottom: 5px;
}


#main4 {
	width: 100%;
	border-top: none;
	border-bottom: none;
	padding: 20px 0 20px;
	margin: 0 auto 20px auto;
}
#main4 h2 span {
	font-size: 1rem;
	margin-bottom: 5px;
}



.aioseo-breadcrumbs {
	display: none;
}




/* 各カテゴリーの下のメニュー */

.catbtmlink {
	background: #e6f5fa;
	padding: 40px 0 55px;
}
.catbtmlink .inner {
	width: 86%;
}
.catbtmlink h3 span {
	font-size: 1rem;
}
.catbtmlink h3 {
	margin-bottom: 20px;
}
.catbtmlink a {
	font-size: 1.6rem;
	padding: 20px 0;
}
.catbtmlink li {
	width: 100%;
	border-bottom: 1px solid #999;
	position: relative;
}
.catbtmlink li:nth-child(2) {
	border-top: none;
}
.catbtmlink img {
	width: 114px;
	margin-right: 6px;
}


#gcourse {
	margin-bottom: 50px;
}

#gcourse .inner {
	width: 86%;
	margin: 0 auto;
}

#gcourse .dclet {
	position: absolute;
	top: 0;
	right: 20px;
	width: 255px;
}

#gcourse h2 {
	width: 86%;
	margin: 0 auto;
	padding: 20px 0;
}

#gcourse ul {
	display: block;
	width: 100%;
}
#gcourse ul li {
	width: 100%;
}

#gcourse ul li:first-child {
	margin-bottom: 40px;
}


/* 学生の声 */

#voice {
	margin-bottom: 50px;
	width: 100%;
	box-sizing: border-box;
	padding: 40px;
}

#voice .vclet {
	top: 80px;
	right: 20px;
	width: 140px;
}

#voice h2, .voicebox h2 {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}

#voice h2 span, .voicebox h2 span {
	font-size: 1.6rem;
	display: block;
}


#voice #voicesplider {
	padding: 0;
}




.content {
	display: block;
}

.content #leftmenu {
	background: linear-gradient(90deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
	width: 95%;
	padding: 20px;
	margin-bottom: 40px;
}

.content #leftmenu ul {
	position: static;
	width: 100%;
	font-size: 1.25rem;
}

.content #leftmenu li {
	display: inline-block;
	margin-bottom: 10px;
	padding-right: 10px;
}
.content #leftmenu ul a.is-active:before {
	content: '◯ ';
}


.rcontent {
	width: 100%;
	padding-left: 0;
}

.rcontent .inner {
	width: 86%;
	margin: 0 auto;
}






#base {
	padding-top: 40px;
	padding-bottom: 50px;
}



#tindexmenu {
	width: 86%;
	display: block;
	padding-top: 10px;
}

#tindexmenu li {
	width: 100%;
}
#tindexmenu li a {
	padding: 20px 0;
}

.rcontent h3 {
	font-size: 2rem;
}


.grabox1 dl, .grabox2 dl, .grabox3 dl, .grabox4 dl {
	display: block;
}
.grabox1 dt, .grabox2 dt, .grabox3 dt, .grabox4 dt {
	width: 100%;
	font-weight: bold;
	margin-bottom: 5px;
}
.grabox1 dd, .grabox2 dd, .grabox3 dd, .grabox4 dd {
	width: 100%;
	margin-bottom: 5px;
}

.grabox1, .grabox2, .grabox3, .grabox4, .normalbox {
	border-radius: 5px;
	padding: 5px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 30px;
}
.grabox1 .inner, .grabox2 .inner, .grabox3 .inner,
.grabox4 .inner, .normalbox .inner {
	border-radius: 5px;
	padding: 20px;
	width: 100%;
}
.grabox1 h4, .grabox2 h4, .grabox3 h4, .grabox4 h4, .normalbox h4 {
	font-size: 2rem;
}

.mtalbe {
	width: 100%;
	overflow-y: auto;
}


.tablebtn {
	display: block;
}
.tablebtn .bgrabtn {
	width: 100%;
	padding: 10px 20px;
	margin-bottom: 20px;
	background: linear-gradient(110deg, rgba(12,228,244,1) 0%, rgba(41,164,219,1) 100%);
}
.tablebtn .bgrabtn span {
	font-size: 1rem;
	line-height: 1.2;
	display: block;
}
.tablebtn .ograbtn{
	color: #fff;
	text-decoration: none;
	width: 100%;
	padding: 10px 20px;
	border-radius: 10px;
	background: linear-gradient(110deg, rgba(248,100,92,1) 0%, rgba(250,151,60,1) 100%);
	box-sizing: border-box;
	display: block;
}



.voicebox #voiceday_splider, .voicebox #voicenight_splider {
	width: 100vw;
	margin: 50px calc(50% - 50vw);
}

.voicebox #voiceday_splider .splide__track,
.voicebox #voicenight_splider .splide__track {
	padding: 0 32px !important;
}



.rcontent .hs_graph {
	display: block;
	margin: 20px 0 40px;
}
.rcontent .hs_graph li {
	margin-right: 0;
	margin-bottom: 20px;
	text-align: center;
}
.rcontent .hs_graph img {
	width: 86%;
}



.certification {
	display: block;
}

.certification li {
	width: 100%;
}



}
