@charset "UTF-8";
p,div,td,li,a,small{
	/*font-family: senobi-gothic, sans-serif;*/
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color: #666;
}
h1,h2,h3,h4{
	/*font-family: senobi-gothic, sans-serif;*/
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	color: #4c4c4c;
}
* a,* a:hover{
	cursor: pointer;
    cursor: hand;
}
		.pc{
		display: block;
	}
	.tbl{
		display:none;
	}
	.sp{
		display:none;
	}

body{
	background: #fff;
}
/*scroll*/
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position: fixed;
	left:5%;
	bottom:0;
	width: 1px;
	background: #eee;
    /*全体の高さ*/
	height:150px;
	/*ぼかしから出現*/
	animation-name:fadeAnime;
	animation-duration:6s;
	animation-fill-mode:forwards;
	display: block;
}
/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	font-size: 13px;
	font-weight:200;
	position: absolute;
	left:-6px;
	bottom:58.6px;
	background-color: #fff;
    /*テキストの形状*/
	color: #4c4c4c;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	z-index: 10;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	bottom:33px;
    /*線の形状*/
	width: 1px;
	height:150px;
	background: #4c4c4c;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		
		opacity: 1;
	}
	100%{
		height:150px;
		top:0;
		opacity: 0;
	}
}
header{
	width:100%;
	height:80px;
	background: rgb(255,255,255,.5);
	margin: auto;
	display: flex;
	flex-direction: row;		
	justify-content:space-between;
	align-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	}
header div#global-nav{
	flex-basis: 70%;
	height: 100%;
	max-width: 800px;
	margin-right: 5%;
}
header div#global-nav nav {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
header div#global-nav ul {
    height: 100%;
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header div#global-nav ul li{
    margin: auto;
}
header div#global-nav ul li a{
	font-size: 12px;
}
#logo{
	flex-basis: 30%;
	margin-left: 5%;
		/* ぼかしから出現 
	animation-name:fadeAnime;
	animation-duration:5s;
	animation-fill-mode:forwards;*/
	display: flex;
}	
#logo a {
    width: auto;
    height:55px;
    display: flex;
	margin: auto 0;
	color: #666;
}
#logo img {
    width: auto;
    height:100%;
    margin: auto 0;
}
#name{
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	display: none;
}
#name img{
	width: 100%;
	height: 100%;
}
/*ここまでハンバーガー*/
/*メイン*/
#center svg{
  width:100%;
	height:100%;
	margin: auto;
		/* ぼかしから出現 */
	animation-name:fadeAnime2;
	animation-duration:5s;
	animation-fill-mode:forwards;
}
	.eachTextAnime,#center1 #title2 p {
    text-shadow: 1px 1px 0 rgb(255,255,255,.4), -1px -1px 0 rgb(255,255,255,.4),-1px 1px 0 rgb(255,255,255,.4), 1px -1px 0 rgb(255,255,255,.4),0px 1px 0 rgb(255,255,255,.4), 0-1px 0 rgb(255,255,255,.4),-1px 0 0 rgb(255,255,255,.4), 1px 0 0 rgb(255,255,255,.4);
}
@keyframes fadeAnime{
  0% {
	opacity: 0;
	transform: scale(1.02);
  }
  50%{
	opacity: 0;
	transform: scale(1.02);
  }
  100%{
	opacity:1;
	transform: scale(1);
  }
}
@keyframes fadeAnime2{
  0%{
	opacity: 0;
  }
  65%{
	opacity:0;
  }
  75%{
	opacity:1;
	transform: scale(1.3);
  }
  100% {
	opacity:1;
	transform: scale(1);
  }
}
@keyframes fadeAnime3{
  0%{
	opacity: 0;
  }
  100% {
	opacity:1;
  }
}
@keyframes fadeAnime4{
  0%{
	opacity: 0;
  }
  90%{
	opacity: 0;
  }
  100% {
	opacity:1;
  }
}
path{
    fill: url(#grad1);
  }
#center{
	width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
	margin-bottom: 50px;
}
#center .centerInner {
    height: 400px;
    width: auto;
    margin: 40px auto 0;
    position: relative;
}
#center #title{
	position: absolute;
    top: 147px;
    right: 50px;
    height:115px;
    width: 300px;
	animation-name:fadeAnime3;
	animation-duration:3s;
}
#center #title .eachTextAnime span{
	opacity: 0;
	font-size:50px;
	margin: auto;
	text-align: center;
	color: #4c4c4c;
}
#center #title .eachTextAnime.appeartext span{
	animation:text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
.eachTextAnime{
	font-size:50px;
	margin: auto;
	text-align: center;
	color: #4c4c4c;
	animation-name:fadeAnime3;
	animation-duration:1s;
}
/*ここまで円の制御*/
p.page-link{
	width: 100%;
    bottom: 5px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1;
	flex-direction: column;
	animation-name: fadeAnime;
    animation-duration: 6.5s;
    animation-fill-mode: forwards;
}
p.page-link a{
	position: relative;
}
p.page-link a::before {
	display: block;
    content: "";
    /*描画位置*/
    position: absolute;
    top: 53px;
    right: 11.5px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #4c4c4c;
    transform: skewX(-31deg);
}
p.page-link a::after{
	display: block;
	content:"";
    /*描画位置*/
	position: absolute;
	top: 23px;
    right: 17.5px;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#4c4c4c;
}
#center p.btn1,#center p.btn1 a{
	animation-name:fadeAnime;
	animation-duration:6s;
}
#mainInner ul{
	width: 80%;
	max-width: 1000px;
    margin:50vh auto;
}
.lineup{
	width: 80%;
	max-width: 1000px;
    margin:0 auto;
}
#mainInner ul li{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
	justify-content:space-between;
	padding-top:100px;
}
.lineup li{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
	justify-content:space-between;
	padding-top:50px;
}
#mainInner ul h2{
	flex-basis: 100%;
	text-align: left;
	font-size:38px;
}
#mainInner ul li#service h2{
	flex-basis: 100%;
	text-align:left;
	font-size:38px;
}
#mainInner ul li#service p{
	flex-basis: 100%;
	font-size: 18px;
	text-align:left;
	color: #595959;
}
#mainInner ul li p{
	flex-basis: 100%;
	font-size: 18px;
	text-align: left;
	color: #595959;
	margin: auto;
}
#mainInner ul li h2.title-02{
	margin-top: 5px;
	margin-bottom: 5px;
}
#mainInner ul li .boxInner,.lineup li .boxInner {
    flex-basis: 40%;
}
#mainInner ul li .boxInner a, #seminar-all ul li .boxInner a{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 80px 0 150px;
}
#mainInner ul li .boxInner .rightInner,#seminar-all ul li .boxInner .rightInner{
	width: 100%;
	height:100%;
	overflow: hidden;
	max-width: 500px;
	margin: auto;
}
#seminar-all ul li .boxInner .rightInner {
    border-top: #468eb5 5px solid;
}
#mainInner ul li .boxInner .rightInner img,#seminar-all ul li .boxInner .rightInner img{
	width: 100%;
	height:100%;
	object-fit: contain;
	transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
/*hover*/
#mainInner ul li .boxInner a:hover .rightInner img,#seminar-all ul li .boxInner a:hover .rightInner img{
	transform: scale(1.04);
}
#mainInner ul li .boxInner .leftInner,#seminar-all ul li .boxInner .leftInner{
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: auto;
}
#mainInner ul li .boxInner .leftInner h3,#seminar-all ul li .boxInner .leftInner h3 {
    font-size:23px;
    color: #595959;
    margin-top: 8px;
    font-weight: 500;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
#seminar-all ul li .boxInner .leftInner p {
    color: #468eb5;
    margin-top: 20px;
}
/*hover*/
#mainInner ul li a .boxInner:hover .leftInner h3,#seminar-all ul li a .boxInner:hover .leftInner h3{
}
/*hover*/
#mainInner ul li a .boxInner:hover .rightInner img,#seminar-all ul li a .boxInner:hover .rightInner img{
	width: 100%;
	height:100%;
	opacity: 1;
}
#mainInner ul li .boxInner .leftInner p{
	font-size:18px;
	margin-top: 6px;
	color: #595959;
}
#mainInner #service .boxInner .inInner{
    flex-basis: 40%;
}
#mainInner #service .boxInner {
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px 0;
    flex-basis: auto;
}
#mainInner #service .boxInner h3{
    font-size: 25px;
	text-align: left;
}
#mainInner #service .boxInner p{
    font-size:18px;
	text-align: left;
	margin-top: 20px;
}
#mainInner ul li .boxInner .leftInner p.smll{
    font-size:12px;
	text-align: right;
	position: relative;
	margin-right: 15px;
	margin-top: 10px;
	font-weight: 200;
}
#mainInner #service p.smll,#seminar-all p.smll{
    margin: auto;
    font-size: 12px;
    text-align: right;
    display: flex;
    justify-content: center;
    position: relative;
    font-weight: 200;
}
#mainInner ul li .boxInner .leftInner p.smll::before,#mainInner #service p.smll::before,#seminar-all ul li .boxInner .leftInner p.smll::before{
    content: "";
    background: #595959;
    width: 70px;
    height: 1px;
    position: absolute;
    bottom: -4px;
    right: 0;
}
#mainInner ul li .boxInner .leftInner p.smll::after,#mainInner #service p.smll::after,#seminar-all ul li .boxInner .leftInner p.smll::after{
    content: "";
    background: #595959;
    width: 18px;
    height: 1px;
    position: absolute;
    bottom: 3px;
    right: -3px;
    transform: rotate(52deg);
}
#mainInner #service{
    justify-content: center;
}
#mainInner #service p.btn2{
	flex-basis: 100%;
}
#mainInner #service a {
    cursor: pointer;
    cursor: hand;
    height: auto;
    flex-basis: 40%;
    text-align: center;
    font-size: 20px;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
#mainInner #service a:hover{
	color: #fff;
	cursor: pointer;
    cursor: hand;
}
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}
/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:0.4s;
	animation-delay: 0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.bgappear2{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
.bgappear3{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
#center1 svg{
  width:100%;
	height:100%;
	margin: auto;
}
path{
    fill: url(#grad2);
  }
#stop4 {
  animation: change-color1 6s ease-in-out infinite alternate;
}
#stop5 {
  animation: change-color2 6s ease-in-out infinite alternate;
}
#stop6 {
  animation: change-color3 6s ease-in-out infinite alternate;
}
@keyframes change-color1 {
  0% {stop-color:#ff4188;}
  50% {stop-color:#cce5ff;}
  100% {stop-color:#00e6d9;}
}
@keyframes change-color2 {
  0% {stop-color:#007fff;}
  100% {stop-color:#00bef9;}
  100% {stop-color: #005739;}
	
}
@keyframes change-color3 {
  0% {stop-color:#00bef9;}
	50% {stop-color:#ff4188;}
  100% {stop-color: #005739;}
}
#center1{
	width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
#center #title .eachTextAnime span {
    opacity: 0;
    font-size: 4vw;
     margin: 0 auto;
    text-align: center;
    color: #4c4c4c;
}
.eachTextAnime {
    font-size: 4vw;
    margin: 0 auto;
    text-align: center;
    color: #4c4c4c;
}
#center1 .centerInner,#center .centerInner {
    height: 30vw;
    width: 30vw;
    margin: 40px auto;
    position: relative;
}
#center1 #title2 h1{
    font-size: 4vw;
    margin: 0 auto 1vw;
    text-align: center;
    color: #4c4c4c;
}
#center1 #title2,#center #title{
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    height: 30vw;
    width: 30vw;
}
#center1 #title2 p {
    font-size: 1.5vw;
    margin: 0 auto;
    text-align: center;
    color: #4c4c4c;
}
p.btn2{
	width: 100%;
    bottom: 5px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1;
}
p.btn2 a{
	text-align: center;
    padding: 5px 25px;
    border:1px solid #4c4c4c;
	transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
p.btn2 a:hover{
	background: #4c4c4c;
	color: #fff;
}

/*footer*/
footer {
    position: relative;
}
#footer::after {
    display: block;
    content: "";
    z-index: 20;
    width: 10%;
    bottom: -10px;
    left: 0;
    height: 100%;
    background: #fff;
    position: absolute;
}
footer #logoG{
	width: 100%;
}
footer #logoG ul{
	width: 80%;
	max-width: 1000px;
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer #logoG ul li{
	width: 150px;
	height: 80px;
	background: #fff;
	border: 1px solid #c0c0c0;
	margin: 10px;
		z-index: 30;

}
footer #logoG ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
		z-index: 30;
}
footer #logoG ul li a:hover img{
	opacity: 0.6;
}
footer #logoG ul li img{
	width: 90%;
    height:90%;
    margin: auto;
    object-fit: contain;
	transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: 30;
}
footer #footernav ul{
	z-index: 30;
	width:80%;
	max-width: 1000px;
	margin:50px auto 30px;
	clear: both;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer #footernav ul li{
	max-width:180px;
	font-size:18px;
	display: flex;
	justify-content:center;
	color: #5c5c5c;
	margin: 5px 0;
}
footer #footernav ul li a{
		transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
		z-index: 30;

}
footer #footernav ul li a:hover{
		color: #c0c0c0;
}
footer #footernav ul li:nth-child(even){
	width:4%;
}
footer small{
	display: flex;
    justify-content: center;
    width: 100%;
	margin-bottom: 10px;
}
h2,h3,h4{
	font-weight:600 !important;
}
/*about*/
#about h1{
	width: 80%;
	max-width: 1000px;
	margin:150px auto 10px;
	font-size: 42px;
	text-align: left;
	font-weight: 500;
}
#seminar-all h1{
	width: 80%;
	max-width: 1000px;
	margin:0 auto 10px;
	font-size: 42px;
	text-align: center;
	font-weight: 500;
}
#about #policy h1::after{
	display: block;
	content: "(個人情報に関する取扱いについて)";
	font-size: 20px;
	text-align: left;
	font-weight: 400;
}
#about #bread{
	width: 100%;
	background:#4c4c4c;
	max-width: none;
}
#seminar-all #bread {
	margin:150px auto 10px;
	width: 100%;
	max-width: none;
    background: #fff;
}
#about #bread ul,#seminar-all #bread ul{
	width: 80%;
	max-width: 1000px;
	display: flex;
	flex-direction: row;
	margin: auto;
	padding: 4px 0;
}
#about #bread li{
	font-size: 14px;
	margin: 0 5px;
	color: #fff;
}
#seminar-all #bread li{
	margin: 0 5px;
	font-size: 14px;
    color: #555;
}
#seminar-all #bread li a {
	text-decoration: underline;
	font-size: 14px;
    color: #555;
}
#about #bread li a{
	font-size: 14px;
	color: #fff;
	text-decoration: underline;
}
#about table{
	width: 80%;
	max-width: 1000px;
	margin:50px auto;
}
#about table td,#about table th{
	font-size: 18px;
	padding:20px;
}
#about table th{
	border-top: 1px solid #4c4c4c;
	border-left: 1px solid #4c4c4c;
	border-right: 1px solid #4c4c4c;
	border-bottom: 1px solid #fff;
	text-align:center;
	vertical-align: middle;
	width:15%;
	background:#4c4c4c;
	color: #fff;
}
#about table tr:last-child th{
	border-bottom: 1px solid #4c4c4c;
}
#about table td{
	border: 1px solid #4c4c4c;
	width: 85%;
	color: #4c4c4c;
}
#about table td p{
	margin:20px 0;
	line-height: 1.8;
	color: #4c4c4c;
}
#about table td a{
	text-decoration: underline;
	font-size: 16px;
}
/*contact*/
.formrun-embed {
    margin: 50px 0 150px;
}
/*policy*/
#policy p.text{
	text-indent: 1rem;
	width: 80%;
	margin:50px auto;
	font-size: 18px;
	line-height: 1.8;
	max-width: 1000px;
}
#policy div{
	width: 80%;
	max-width: 1000px;
	margin:50px auto;
}
#policy div h2,#policy div h4{
	font-size:18px;
	font-weight: normal !important;
}
#policy div h3{
	font-size:18px;
	text-align: center;
	font-weight: normal !important;
}
#policy div p{
	text-indent: 1rem;
}
#policy div#contact p {
    text-indent: unset;
}
#policy div p,#policy div ul{
	margin: 20px auto 50px;
	width: 95%;
}
#policy div ul.outlist{
	width: 90%;
	margin: 30px auto;
}
#policy div ul.outlist li{
	margin: 30px auto;
	text-indent: 1rem;
}
#policy div a{
	text-decoration: underline;
}
#policy div p,#policy div ul li{
	font-size: 18px;
	line-height: 1.8;
}
#policy #contact p{
	margin: 20px auto;
}
#article div#bnr-head {
    margin: 80px auto 0px;
    width: auto;
    height: 100%;
}
#article div#bnr-head img{
    width: 100%;
    height: 100%;
	object-fit: cover;
}
#seminar-all #article #bread {
    margin:0 auto 10px;
    width: 100%;
    max-width: none;
}
#seminar-all #article #bread ul {
    width: 95%;
	max-width: none;
    display: flex;
    flex-direction: row;
    margin:0 auto;
    padding: 4px 0;
}
.art-inner {
    width: 80%;
    max-width: 1000px;
    margin: auto;
}
#article .top{
    margin-top: 20px;
	margin-bottom:80px;
}
#article p.date {
    color: rgb(70, 142, 181);
	font-size: 20px;
}
#article h1 {
	width: 100%;
    margin: 20px auto 20px;
    font-size:30px;
    text-align:left;
    font-weight: 500;
}
#article ul.detail{
	width: 100%;
    margin: 0 auto;
}
#article ul.detail li {
	width: 100%;
    font-size: 20px;
    text-align: left;
    font-weight: 500;
    color: #4c4c4c;
	margin: 5px auto;
}
#article .mid {
	margin: 0;
}
#article .mid ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
	justify-content: space-between;
	margin: 0 auto 150px;
}
#article .mid ul.last {
	margin: 0 auto 80px;
}
#article .mid li.left {
    flex-basis: 65%;
}
#article .mid li.left h2{
    font-size: 26px;
	margin-bottom: 20px;
}
#article .mid li.left h3{
    font-size: 20px;
	margin-bottom: 20px;
}
#article .mid li.left h3 span{
    font-size: 16px;
	font-weight:normal;
}
#article .mid li.left p{
    font-size: 18px;
    line-height: normal;
}
#article .mid li.left p.prof{
    font-size: 16px;
    line-height: normal;
	margin-top: 20px;
}
#article .mid ul li.right {
    flex-basis: 30%;
    display: flex
;
}
#article .mid ul li.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	aspect-ratio: 4 / 5;
    object-position: top;
}
#article .bot {
    width: 100%;
    height: auto;
    margin:80px 0;
}
#article .bot iframe{
	margin: auto;
    height: 356px;
	display: flex;
	flex-direction: column;
}
#article .bot p {
	font-size: 16px;
	padding: 30px 0;
    margin: auto;
    line-height: normal;
}
@media screen and (max-width:791px) {
		.pc{
		display: none;
	}
	.tbl{
		display:block;
	}
	.sp{
		display:none;
	}
	.open {
   overflow: hidden;
  }
	header {
    height: 50px;
}
	#logo a {
    height: 35px;
}
  .open #global-nav {
    visibility: visible;
    opacity: 1;
	  transition: all 0.5s ease-in;
	  z-index: 10;
	  right: 0;
  }
  .open #global-nav ul {
    opacity: 1;
    transform: translateY(0);
  }
	.open #global-nav ul  li{
		margin: 0px 0 3vh;
	}
#top #nav-toggle {
				/* ぼかしから出現 */
}
#nav-toggle {
    top:0;
    right: 30px;
    height: 3vh;
}
#toggle-box {
    top: 0;
    right: 30px;
    padding: 1.5vh 1.5vw;
    z-index: 999;
}
#nav-toggle>div {
    position: relative;
    width: 3vw;
}
#nav-toggle span {
    width: 100%;
    height: 0.2vh;
    left: 0;
    display: block;
    background: #707070;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 1.4vh;
}
#nav-toggle span:nth-child(3) {
    top: 2.8vh;
}
  .open #nav-toggle span {
    background:#707070;
  }

  .open #nav-toggle span:nth-child(1) {
    top:9px;
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    top:9px;
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
  }
  header div#global-nav {
	margin-right: 0;
    background: #fff;
    color: #4d2b2d;
    position: fixed;
    top: 0;
    right: -1000px;
    bottom: 0;
    font-size: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity:0;
	  transition: all 0.5s ease-in;
	  z-index: 100;
  }
  header div#global-nav ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    transition: color .6s ease;
	  font-size:2.8vh;
  }
  header div#global-nav ul{
	  width:100%;
	  margin: auto;
    list-style: none;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
  }
	header div#global-nav ul li{
		margin-bottom:5px;
	}
	header div#global-nav .menu li img{
		max-width: 170px;
	}
	header div#global-nav ul ul{
		width: 60%;
		margin: auto;
		display: flex;
		flex-direction: column;
		justify-content:center;
		align-items: center;
	}
	header div#global-nav .menu ul{
		flex-direction: row;
		width:40%;
		margin:5px auto 0;
		justify-content:space-around;
	}
	header div#global-nav .menu li {
    margin:0 0 3vh;
}
	header div#global-nav .menu ul li {
    font-size: 10px;
    margin:0;
}
	header div#global-nav ul ul li{
		flex-basis:15%;
		display: flex;
		align-items: flex-start;
	}
	header div#global-nav .menu li:last-child{
		align-items: center;
		font-size:2.8vh;
		color: #114c49;
	}
	#global-nav .menu .haschild .checked a{
		color: #ef858c;
		border-bottom: 2px solid #ef858c;
	}

	#global-nav {
		width: 100vw;
	}
	#nav-toggle {
    height: 30px;
}
	#toggle-box{
    padding: 15px;
}
	#nav-toggle>div {
    width: 30px;
}
	#nav-toggle span {
    height: 1px;
}
	#mainInner #service a{
    margin:0 0 50px;
	flex-basis: 45%;
}
	p.btn2 a{
    font-size: 17px;
		margin-bottom: 20px;
}
	#mainInner ul li .boxInner {
    flex-basis: 45%;
}
	#mainInner #service p.smll {
    margin: 28px auto;
}
	#mainInner ul h2,#mainInner ul li#service h2 {
    font-size:30px;
}
	#mainInner ul li .boxInner .leftInner p,#mainInner #service .boxInner p ,#mainInner ul li p, #mainInner ul li#service p{
    font-size: 15px;
}
	#mainInner ul li .boxInner .leftInner h3,#mainInner #service .boxInner h3 {
    font-size:18px;
}
		#center .centerInner ,#center1 .centerInner{
		height: 50vw;
    width: 50vw;
}
	#center #title,#center1 #title2 {
		height: 50vw;
    width: 50vw;
    animation-name: fadeAnime3;
    animation-duration: 3s;
		
}
	#center1 #title2 h1 {
		font-size: 5vw;
	}
	#center1 #title2 p {
    font-size: 2vw;
}
	#center #title .eachTextAnime span {
    font-size: 5vw;
}
		#mainInner section .boxInner .leftInner h3.onestop {
    min-width: unset;
}
	#mainInner section h2 {
    flex-basis: 100%;
    text-align: left;
    font-size: 35px;
}
	#mainInner section#service h2 {
    font-size: 35px;
}
	#mainInner section p {
    font-size: 16px;
}
	#mainInner section .boxInner .leftInner h3 {
    font-size: 23px;
    color: #595959;
    margin-top: 15px;
    font-weight: 500;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
#mainInner section .boxInner .leftInner p {
    font-size: 17px;
    margin-top: 10px;
    color: #595959;
}
	#mainInner #service .boxInner h3 {
    font-size: 23px;
    text-align: left;
}
	footer{
    margin-top: 50px;
}
	footer #footernav ul li {
    font-size: 15px;
}
	footer #footernav ul li a {
    font-size: 12px;
}
	footer #logoG ul li {
    width: 120px;
    height:50px;
}
	/*about*/
#about h1{
	font-size: 30px;
	margin: 100px auto 10px;
}
#about #bread li{
	font-size: 13px;
}
#about #bread li a{
	font-size: 13px;
}
#about table td,#about table th{
	font-size: 17px;
}
#about table td a{
	text-decoration: underline;
	font-size: 14px;
}
	#policy p.text,#policy div p,#policy div ul li,#policy div h2, #policy div h4{
	font-size: 17px;
}
#about h1::after {
    font-size:17px;
}
	#article h1{
		font-size: 26px;
		margin: 10px 0;
	}
	#article .mid li.left h2{
		font-size: 22px;
		margin-bottom: 10px;
	}
	#article p.date,#article ul.detail li,#article .mid li.left h3{
		font-size: 18px;
	}
	#seminar-all #bread li,#seminar-all #bread li a{
        font-size: 13px;
    }
	#article .mid li.left p{
		font-size: 17px;
	}
	#article .bot p{
		font-size: 14px;
	}
	#article .mid li.left h3 span,#article .mid li.left p.prof{
		font-size: 14px;
	}
	#article .mid ul {
    flex-direction: column;
}
	#article .mid ul li.right {
    width: 50%;
    margin:50px auto 0;
}
	#article .mid ul li.right {
        width: 70%;
        margin: 50px auto 0;
    }
	#article .bot a{
		font-size: 20px;
	}
	#article .bot{
		margin-bottom: 80px;
	}
	#article .top{
    margin-top: 10px;
    margin-bottom: 40px;
	}
	#article div#bnr-head {
    margin: 50px auto 0px;
}
}
@media screen and (max-width:599px) {
	.pc{
		display: none;
	}
	.tbl{
		display: none;
	}
	.sp{
		display: block;
	}
	 /*ハンバーガーメニュー*/

	#center {
		height: 90vh;
}
	#nav-toggle {
    top: 20px;
    right: 20px;
    height: 30px;
}
	#toggle-box{
    top: 20px;
    right: 20px;
    padding: 15px;
}
	#nav-toggle>div {
    width: 30px;
}
	#nav-toggle span {
    height: 1px;
}
	#mainInner ul li#age,#mainInner #service{
    margin-top: 80px;
}

	#mainInner ul h2, #mainInner ul li#service h2 {
    font-size:25px;
}
	#mainInner ul li .boxInner .leftInner p{
		margin-bottom: 0;
	}
	#mainInner ul li .boxInner {
    flex-basis:100%;
}
	#mainInner ul li .boxInner a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 50px 0 0;
}
	#center .centerInner ,#center1 .centerInner{
		height: 80vw;
    width: 80vw;
}
	#center #title,#center1 #title2 {
		height: 80vw;
    width: 80vw;
    animation-name: fadeAnime3;
    animation-duration: 3s;
		
}
	#center #title .eachTextAnime span {
    font-size: 42px;
}
	#mainInner section {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
		margin: 200px auto;
}
	
	#mainInner section h2 {
    font-size: 30px;
}
	#mainInner section p {
    font-size: 15px;
}
	#mainInner section .boxInner .leftInner h3 {
    font-size: 20px;
    margin-top: 15px;
}
	#mainInner section .boxInner .leftInner p {
    font-size: 15px;
    margin-top: 10px;
}
	#mainInner section .boxInner {
    margin: 20px 0 0;
}
	#mainInner section .boxInner a {
    margin: 50px 0 0;
}
	#mainInner section#service h2 {
    font-size: 30px;
		text-align: left;
}
	#mainInner #service .boxInner p{
    font-size: 15px;
		text-align: left;
		margin-top: 10px;
}
	#mainInner #service .boxInner {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    flex-wrap: nowrap;
}
	#mainInner #service .boxInner .inInner {
    margin: 0;
}
	#mainInner #service .boxInner a {
    margin: 50px 0 0;
}
	#mainInner #service .boxInner h3 {
    font-size:18px;
    margin-top:0;
}
		#mainInner #service .boxInner .leftInner h3 {
    margin-top:8px;
}

	#mainInner #service p.btn2 {
    margin: 50px auto 0;
}
	#center1 #title2 h1 {
    font-size: 30px;
}
	#center1 #title2 p {
    font-size: 16px;
}
	footer #logoG ul {
    width:80;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
}
	footer #logoG ul li {
    flex-basis: 45%;
    margin: 10px 5px;
}
	footer #logoG ul li img {
    width: 90%;
    height: 90%;
    margin: auto;
    object-fit: contain;
    transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}
	footer #footernav ul {
    width: 90%;
    margin: 30px auto 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
	footer #footernav ul li {
    max-width: 180px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    color: #5c5c5c;
    margin: 5px 0;
}
	#logo {
    left:5px;
}
	 /*about*/
	#about table {
    width: 90%;
}
	#about table tr{
		display: flex;
    flex-direction: column;
}
	#about table th,#about table td{
		width: 100%;
		font-size: 16px;
}
	#about table th{
		border: none;
		padding: 10px 0;
}
	#about table tr:first-child td,#about table tr:nth-child(4) td,#about table tr:nth-child(5) td,#about table tr:nth-child(6) td,#about table tr:nth-child(7) td{
		text-align: center;
}
	#about h1,#about #bread ul{
    font-size: 25px;
    width: 90%;
}
		#policy p.text,#policy div p,#policy div ul li,#policy div h2, #policy div h4{
	font-size: 15px;
}
	#about h1::after {
    font-size:15px;
}
		#article h1{
		font-size: 24px;
	}
	#article .mid li.left h2{
		font-size: 20px;
	}
	#article p.date,#article ul.detail li,#article .mid li.left h3{
		font-size: 17px;
	}
	#seminar-all #bread li,#seminar-all #bread li a{
        font-size: 11px;
    }
	#article .mid li.left p{
		font-size: 15px;
	}
	#article .mid li.left h3 span,#article .mid li.left p.prof,#article .mid li.left a{
		font-size: 13px;
	}
		#article .bot p{
	}
#article .bot iframe {
    width: 300px;
    height: 400px;
    flex-direction: column;
}
	    #article .bot {
			margin-top: 50px;
        margin-bottom: 50px;
    }

}
@media screen and (min-width:1441px) {
	#mainInner ul {
    width: 80%;
    max-width:1440px;
    margin: 50vh auto;
}
	#mainInner section h2,#mainInner section#service h2,#mainInner ul h2,#mainInner ul li#service h2{
    font-size: 3vw;
}
	#mainInner section p,#mainInner section#service p,#mainInner ul li .boxInner .leftInner p,#mainInner ul li p,#mainInner ul li#service p{
    font-size: 1.2vw;
}
	#mainInner section .boxInner .leftInner h3,#mainInner #service .boxInner h3,#mainInner ul li .boxInner .leftInner h3 {
    font-size: 2vw;
}
	#mainInner section .boxInner .leftInner p,#mainInner #service .boxInner p{
    font-size: 1.2vw;
}
	header {
    height: 100px;
}
	#logo a {
    height: 75px;
}
	header div#global-nav ul,header div#global-nav {
    max-width: 1000px;
}
	header div#global-nav ul li a {
    font-size: 22px;
}
	#mainInner section {
    max-width: 1200px;
}
	footer #logoG ul li {
    width: 280px;
    height: 150px;
}
footer #footernav ul li {
	max-width: 200px;
    font-size:20px;
}
}